We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a96ede9 commit ad5d1e0Copy full SHA for ad5d1e0
tests.sh
@@ -3,13 +3,13 @@ set -e
3
4
JSONNET_BIN="${JSONNET_BIN:-./jsonnet}"
5
TEST_SNIPPET="std.assertEqual(({ x: 1, y: self.x } { x: 2 }).y, 2)"
6
-echo -n "snippet: "
+printf "snippet: "
7
"$JSONNET_BIN" -e "${TEST_SNIPPET}" || FAIL=TRUE
8
9
if [ -z "$DISABLE_LIB_TESTS" ]; then
10
- echo -n 'libjsonnet_test_snippet: '
+ printf 'libjsonnet_test_snippet: '
11
LD_LIBRARY_PATH=. ./libjsonnet_test_snippet "${TEST_SNIPPET}" || FAIL=TRUE
12
- echo -n 'libjsonnet_test_file: '
+ printf 'libjsonnet_test_file: '
13
LD_LIBRARY_PATH=. ./libjsonnet_test_file "test_suite/object.jsonnet" || FAIL=TRUE
14
fi
15
examples/check.sh || FAIL=TRUE
0 commit comments