File: run-test

package info (click to toggle)
drmaa 0.7.9-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 360 kB
  • sloc: python: 1,295; makefile: 130; sh: 34
file content (14 lines) | stat: -rwxr-xr-x 277 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh
set -e
module="drmaa"
test -z "$AUTOPKGTEST_TMP" || cd "$AUTOPKGTEST_TMP"

# Work around jemalloc bug #951704
LD_PRELOAD="libdrmaa.so"
export LD_PRELOAD

for py in $(py3versions --supported)
do
	echo "Testing with $py:"
	$py -c "import $module; print($module)"
done