aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test.sh')
-rw-r--r--tests/test.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test.sh b/tests/test.sh
index f2b9d86..1f36f4d 100644
--- a/tests/test.sh
+++ b/tests/test.sh
@@ -63,18 +63,18 @@ if [ "$1" == "stl-leaks" ]; then
(
echo "echo"
echo "upload"
+ echo "ASCII-testname"
cat "$TESTDATA/sample-ascii.stl" | wc -c
cat "$TESTDATA/sample-ascii.stl"
- echo "ASCII-testname"
) | checkleaks
announce "Testing BIN STL Parsing"
(
echo "echo"
echo "upload"
+ echo "BIN-testname"
cat "$TESTDATA/sample-binary.stl" | wc -c
cat "$TESTDATA/sample-binary.stl"
- echo "BIN-testname"
) | checkleaks
elif [ "$1" == "stl-upload" ]; then
@@ -90,9 +90,9 @@ elif [ "$1" == "stl-upload" ]; then
(
echo "echo"
echo "upload"
+ echo "$name"
cat "$file" | wc -c
cat "$file"
- echo "$name"
) | connect
elif [ "$1" == "auth-upload" ]; then
@@ -101,9 +101,9 @@ elif [ "$1" == "auth-upload" ]; then
echo "auth test"
echo "upload"
+ echo "testname"
cat "$TESTDATA/sample-ascii.stl" | wc -c
cat "$TESTDATA/sample-ascii.stl"
- echo "testname"
) | connect
(