aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
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