diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-02-28 19:30:50 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-02-28 19:30:50 +0000 |
commit | e72d2748a9d22228dcbd1cff755fb412f2928a78 (patch) | |
tree | f6e2935f9a5ae0f79d4b10d729fa50d4f49494f0 /test | |
parent | 7f77dbd5f00255d869f5f754c160c5b7220fa1bb (diff) | |
download | monitor-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/Makefile | 2 | ||||
-rw-r--r-- | test/edid.crt.ilyama | bin | 0 -> 128 bytes | |||
-rw-r--r-- | test/edid.crt.leia | bin | 0 -> 128 bytes | |||
-rw-r--r-- | test/edid.crt.test_box_lmontel | bin | 0 -> 128 bytes | |||
-rw-r--r-- | test/edid.lcd.20inches | bin | 0 -> 128 bytes | |||
-rw-r--r-- | test/edid.lcd.blino | bin | 0 -> 128 bytes | |||
-rw-r--r-- | test/edid.lcd.rafael | bin | 0 -> 128 bytes | |||
-rw-r--r-- | test/edid.lcd.regis | bin | 0 -> 128 bytes | |||
-rwxr-xr-x | test/parse-edids | 13 |
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 Binary files differnew file mode 100644 index 0000000..e3c1e5b --- /dev/null +++ b/test/edid.crt.ilyama diff --git a/test/edid.crt.leia b/test/edid.crt.leia Binary files differnew file mode 100644 index 0000000..80d76fe --- /dev/null +++ b/test/edid.crt.leia diff --git a/test/edid.crt.test_box_lmontel b/test/edid.crt.test_box_lmontel Binary files differnew file mode 100644 index 0000000..e92ff0b --- /dev/null +++ b/test/edid.crt.test_box_lmontel diff --git a/test/edid.lcd.20inches b/test/edid.lcd.20inches Binary files differnew file mode 100644 index 0000000..c12bcad --- /dev/null +++ b/test/edid.lcd.20inches diff --git a/test/edid.lcd.blino b/test/edid.lcd.blino Binary files differnew file mode 100644 index 0000000..187727e --- /dev/null +++ b/test/edid.lcd.blino diff --git a/test/edid.lcd.rafael b/test/edid.lcd.rafael Binary files differnew file mode 100644 index 0000000..629c684 --- /dev/null +++ b/test/edid.lcd.rafael diff --git a/test/edid.lcd.regis b/test/edid.lcd.regis Binary files differnew file mode 100644 index 0000000..0d085a7 --- /dev/null +++ b/test/edid.lcd.regis 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 |