mirror of
https://github.com/json-c/json-c.git
synced 2026-03-20 21:49:07 +08:00
15 lines
242 B
Bash
Executable File
15 lines
242 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Common definitions
|
|
if test -z "$srcdir"; then
|
|
srcdir="${0%/*}"
|
|
test "$srcdir" = "$0" && srcdir=.
|
|
test -z "$srcdir" && srcdir=.
|
|
fi
|
|
. "$srcdir/test-defs.sh"
|
|
|
|
run_output_test test_util_file "$srcdir"
|
|
_err=$?
|
|
|
|
exit $_err
|