diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-08-27 20:45:41 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-08-28 22:42:13 +0300 |
commit | 3256e7ea63edb8508d1a2aac45da02e5c452df2c (patch) | |
tree | 942f3f1ef46b5c2fdaa9d596e1fc92f97025c840 | |
parent | ba4324ab9ddb883c145f74f5cbe7efc99b29e336 (diff) | |
download | meson-3256e7ea63edb8508d1a2aac45da02e5c452df2c.zip meson-3256e7ea63edb8508d1a2aac45da02e5c452df2c.tar.gz meson-3256e7ea63edb8508d1a2aac45da02e5c452df2c.tar.bz2 |
Shell script cleanup.
4 files changed, 6 insertions, 9 deletions
diff --git a/test cases/common/224 test priorities/meson.build b/test cases/common/224 test priorities/meson.build index b87ae65..33c6fa3 100644 --- a/test cases/common/224 test priorities/meson.build +++ b/test cases/common/224 test priorities/meson.build @@ -1,6 +1,6 @@ project('test priorities', 'c') -test_prog = find_program('test.sh') +test_prog = find_program('testprog.py') test('priority 0', test_prog, args : ['0'], diff --git a/test cases/common/224 test priorities/test.sh b/test cases/common/224 test priorities/test.sh deleted file mode 100644 index 8506fd4..0000000 --- a/test cases/common/224 test priorities/test.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -echo "$1" diff --git a/test cases/common/224 test priorities/testprog.py b/test cases/common/224 test priorities/testprog.py new file mode 100644 index 0000000..470f28c --- /dev/null +++ b/test cases/common/224 test priorities/testprog.py @@ -0,0 +1,5 @@ +#!/usr/bin/env python3 + +import sys + +print(sys.argv[1]) diff --git a/test cases/common/54 run target/scripts/script.sh b/test cases/common/54 run target/scripts/script.sh deleted file mode 100755 index 0adf263..0000000 --- a/test cases/common/54 run target/scripts/script.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -cd "$MESON_SOURCE_ROOT" -echo My current directory is `pwd` -echo Build dir is at $MESON_BUILD_ROOT |