diff options
author | Rob Landley <rob@landley.net> | 2016-03-23 03:30:23 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-03-23 03:30:23 -0500 |
commit | b52f642472af932e382342c4faf30643b91f6be1 (patch) | |
tree | da818895535d23d7af134e09f31a4c641b854775 /tests | |
parent | 5a7b147c18e0550536f888d531dea73696336902 (diff) | |
download | toybox-b52f642472af932e382342c4faf30643b91f6be1.tar.gz |
The test infrastructure prints the command name now, so file.test shouldn't.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/file.test | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/file.test b/tests/file.test index 86ddd9e1..234282f9 100644 --- a/tests/file.test +++ b/tests/file.test @@ -11,11 +11,11 @@ echo "#! /usr/bin/env python" > env.python.script echo "Hello, world!" > ascii echo "cafebabe000000310000" | xxd -r -p > java.class -testing "file empty" "file empty" "empty: empty\n" "" "" -testing "file bash.script" "file bash.script" "bash.script: /bin/bash script\n" "" "" -testing "file bash.script with spaces" "file bash.script2" "bash.script2: /bin/bash script\n" "" "" -testing "file env python script" "file env.python.script" "env.python.script: python script\n" "" "" -testing "file ascii" "file ascii" "ascii: ASCII text\n" "" "" -testing "file java class" "file java.class" "java.class: Java class file, version 49.0\n" "" "" +testing "empty" "file empty" "empty: empty\n" "" "" +testing "bash.script" "file bash.script" "bash.script: /bin/bash script\n" "" "" +testing "bash.script with spaces" "file bash.script2" "bash.script2: /bin/bash script\n" "" "" +testing "env python script" "file env.python.script" "env.python.script: python script\n" "" "" +testing "ascii" "file ascii" "ascii: ASCII text\n" "" "" +testing "java class" "file java.class" "java.class: Java class file, version 49.0\n" "" "" rm empty bash.script bash.script2 env.python.script ascii java.class |