File: python3

package info (click to toggle)
vedo 2025.5.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,404 kB
  • sloc: python: 64,792; javascript: 1,932; xml: 437; sh: 139; makefile: 6
file content (17 lines) | stat: -rwxr-xr-x 244 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
set -e

TEST=$1
if [ "x$TEST" = "x" ]; then
  TEST=common
fi

top_dir=`pwd`
for test_dir in tests/$TEST; do
  if [ -d $test_dir ]; then
    echo "running tests in $test_dir"
    cd $test_dir
    ./run_all.sh
    cd $top_dir
  fi
done