diff options
| author | Daniel Byron <[email protected]> | 2015-07-20 00:41:52 +1000 |
|---|---|---|
| committer | Daniel Byron <[email protected]> | 2015-07-20 00:41:52 +1000 |
| commit | b9dea76ba4493c454495da8d62d9feb008b1c9a7 (patch) | |
| tree | 3d897ea6e1e7bbc8d049d45d2bdf90f16b66c98f /tests | |
| parent | Update TODO.md (diff) | |
| download | schemer2-b9dea76ba4493c454495da8d62d9feb008b1c9a7.tar.xz schemer2-b9dea76ba4493c454495da8d62d9feb008b1c9a7.zip | |
Changed command line interface. Still needs testing.
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/Terminals/TestAllTerminals.sh | 2 | ||||
| -rw-r--r-- | tests/image/Image2Image.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/Terminals/TestAllTerminals.sh b/tests/Terminals/TestAllTerminals.sh index b6d58d9..723c61b 100755 --- a/tests/Terminals/TestAllTerminals.sh +++ b/tests/Terminals/TestAllTerminals.sh @@ -9,5 +9,5 @@ formats=$( for f in $formats; do - schemer2 -in=$f:./$f/test -outputImage=test$f.png + schemer2 -format $f:img -in=./$f/test -out=test$f.png done diff --git a/tests/image/Image2Image.sh b/tests/image/Image2Image.sh index 212decd..1a04475 100644 --- a/tests/image/Image2Image.sh +++ b/tests/image/Image2Image.sh @@ -6,6 +6,6 @@ then else for i in `seq 1 10`; do - schemer2 -minBright=0 -in=img:testinput.png -outputImage=testout$i.png -w=$1 -h=$2 + schemer2 -minBright=0 -format img:img -in testinput.png -out testout$i.png -w=$1 -h=$2 done fi |