From e72d2748a9d22228dcbd1cff755fb412f2928a78 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 28 Feb 2005 19:30:50 +0000 Subject: have edids to test monitor-parse-edid --- test/Makefile | 2 ++ test/edid.crt.ilyama | Bin 0 -> 128 bytes test/edid.crt.leia | Bin 0 -> 128 bytes test/edid.crt.test_box_lmontel | Bin 0 -> 128 bytes test/edid.lcd.20inches | Bin 0 -> 128 bytes test/edid.lcd.blino | Bin 0 -> 128 bytes test/edid.lcd.rafael | Bin 0 -> 128 bytes test/edid.lcd.regis | Bin 0 -> 128 bytes test/parse-edids | 13 +++++++++++++ 9 files changed, 15 insertions(+) create mode 100644 test/Makefile create mode 100644 test/edid.crt.ilyama create mode 100644 test/edid.crt.leia create mode 100644 test/edid.crt.test_box_lmontel create mode 100644 test/edid.lcd.20inches create mode 100644 test/edid.lcd.blino create mode 100644 test/edid.lcd.rafael create mode 100644 test/edid.lcd.regis create mode 100755 test/parse-edids (limited to 'test') 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 Binary files /dev/null and b/test/edid.crt.ilyama differ diff --git a/test/edid.crt.leia b/test/edid.crt.leia new file mode 100644 index 0000000..80d76fe Binary files /dev/null and b/test/edid.crt.leia differ diff --git a/test/edid.crt.test_box_lmontel b/test/edid.crt.test_box_lmontel new file mode 100644 index 0000000..e92ff0b Binary files /dev/null and b/test/edid.crt.test_box_lmontel differ diff --git a/test/edid.lcd.20inches b/test/edid.lcd.20inches new file mode 100644 index 0000000..c12bcad Binary files /dev/null and b/test/edid.lcd.20inches differ diff --git a/test/edid.lcd.blino b/test/edid.lcd.blino new file mode 100644 index 0000000..187727e Binary files /dev/null and b/test/edid.lcd.blino differ diff --git a/test/edid.lcd.rafael b/test/edid.lcd.rafael new file mode 100644 index 0000000..629c684 Binary files /dev/null and b/test/edid.lcd.rafael differ diff --git a/test/edid.lcd.regis b/test/edid.lcd.regis new file mode 100644 index 0000000..0d085a7 Binary files /dev/null and b/test/edid.lcd.regis 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 -- cgit v1.2.1