aboutsummaryrefslogtreecommitdiffstats
path: root/test/parse-edids
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/parse-edids
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/parse-edids')
-rwxr-xr-xtest/parse-edids13
1 files changed, 13 insertions, 0 deletions
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