aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-02-28 19:30:50 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-02-28 19:30:50 +0000
commite72d2748a9d22228dcbd1cff755fb412f2928a78 (patch)
treef6e2935f9a5ae0f79d4b10d729fa50d4f49494f0 /test
parent7f77dbd5f00255d869f5f754c160c5b7220fa1bb (diff)
downloadmonitor-edid-e72d2748a9d22228dcbd1cff755fb412f2928a78.tar
monitor-edid-e72d2748a9d22228dcbd1cff755fb412f2928a78.tar.gz
monitor-edid-e72d2748a9d22228dcbd1cff755fb412f2928a78.tar.bz2
monitor-edid-e72d2748a9d22228dcbd1cff755fb412f2928a78.tar.xz
monitor-edid-e72d2748a9d22228dcbd1cff755fb412f2928a78.zip
have edids to test monitor-parse-edid
Diffstat (limited to 'test')
-rw-r--r--test/Makefile2
-rw-r--r--test/edid.crt.ilyamabin0 -> 128 bytes
-rw-r--r--test/edid.crt.leiabin0 -> 128 bytes
-rw-r--r--test/edid.crt.test_box_lmontelbin0 -> 128 bytes
-rw-r--r--test/edid.lcd.20inchesbin0 -> 128 bytes
-rw-r--r--test/edid.lcd.blinobin0 -> 128 bytes
-rw-r--r--test/edid.lcd.rafaelbin0 -> 128 bytes
-rw-r--r--test/edid.lcd.regisbin0 -> 128 bytes
-rwxr-xr-xtest/parse-edids13
9 files changed, 15 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile
new file mode 100644
index 0000000..26feac1
--- /dev/null
+++ b/test/Makefile
@@ -0,0 +1,2 @@
+all:
+ ./parse-edids edid.*
diff --git a/test/edid.crt.ilyama b/test/edid.crt.ilyama
new file mode 100644
index 0000000..e3c1e5b
--- /dev/null
+++ b/test/edid.crt.ilyama
Binary files differ
diff --git a/test/edid.crt.leia b/test/edid.crt.leia
new file mode 100644
index 0000000..80d76fe
--- /dev/null
+++ b/test/edid.crt.leia
Binary files differ
diff --git a/test/edid.crt.test_box_lmontel b/test/edid.crt.test_box_lmontel
new file mode 100644
index 0000000..e92ff0b
--- /dev/null
+++ b/test/edid.crt.test_box_lmontel
Binary files differ
diff --git a/test/edid.lcd.20inches b/test/edid.lcd.20inches
new file mode 100644
index 0000000..c12bcad
--- /dev/null
+++ b/test/edid.lcd.20inches
Binary files differ
diff --git a/test/edid.lcd.blino b/test/edid.lcd.blino
new file mode 100644
index 0000000..187727e
--- /dev/null
+++ b/test/edid.lcd.blino
Binary files differ
diff --git a/test/edid.lcd.rafael b/test/edid.lcd.rafael
new file mode 100644
index 0000000..629c684
--- /dev/null
+++ b/test/edid.lcd.rafael
Binary files differ
diff --git a/test/edid.lcd.regis b/test/edid.lcd.regis
new file mode 100644
index 0000000..0d085a7
--- /dev/null
+++ b/test/edid.lcd.regis
Binary files differ
diff --git a/test/parse-edids b/test/parse-edids
new file mode 100755
index 0000000..a799cf8
--- /dev/null
+++ b/test/parse-edids
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+opt_perl=""
+if [ "$1" = --perl ]; then
+ opt_perl=--perl
+ shift
+fi
+
+for i in $*; do
+ echo "File: $i"
+ ../monitor-parse-edid $opt_perl $i
+ perl -le 'print "#" x 80'
+done