aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/ryml/tools/test_suite/run_test_suite.sh
blob: 4f955f67be806d84d8a22db108a3bb3abd4f0637 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

set -x
set -e

d=$1
[ "$d" == "" ] && d=.
if [ ! -d $d ] ; then
    echo "$d is not a directory"
    exit 1
fi
d=$(cd $d ; pwd) # get absolute path

cd $d/yaml-test-runtimes
make force build
cd $d/yaml-test-suite
make clean run-tests export
xsel -b <export.tsv