aboutsummaryrefslogtreecommitdiff
path: root/test/suites/invalid-unicode/run
blob: 5b542a436eda38903d597714cb32e94112b666d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
#
# Copyright (c) 2009-2016 Petri Lehtinen <petri@digip.org>
#
# Jansson is free software; you can redistribute it and/or modify
# it under the terms of the MIT license. See LICENSE for details.

is_test() {
    test -d $test_path
}

run_test() {
    $json_process $test_path >$test_log/stdout 2>$test_log/stderr || return 1
    valgrind_check $test_log/stderr$s || return 1
}

show_error() {
    valgrind_show_error && return
    cat $test_log/stderr
}

. $top_srcdir/test/scripts/run-tests.sh