Skip to content

Commit 4dc6e9e

Browse files
authored
Merge pull request #130 from am813nt/master
Fixed parallel execution of tests (parallel-tests in automake)
2 parents d9c9926 + 54efea9 commit 4dc6e9e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

configure.ac

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
AC_PREREQ([2.62])
12
AC_INIT([patchelf], m4_esyscmd([printf $(cat ./version)]))
23
AC_CONFIG_SRCDIR([src/patchelf.cc])
34
AC_CONFIG_AUX_DIR([build-aux])
4-
AM_INIT_AUTOMAKE([-Wall -Werror dist-bzip2 foreign color-tests serial-tests])
5+
AM_INIT_AUTOMAKE([1.11.1 -Wall -Werror dist-bzip2 foreign color-tests parallel-tests])
56

67
AM_PROG_CC_C_O
78
AC_PROG_CXX

tests/no-rpath-prebuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARCH="$1"
44
PAGESIZE=4096
55

66
if [ -z "$ARCH" ]; then
7-
ARCH=$(basename $0 .sh | sed -e 's/.*-//')
7+
ARCH=$(basename $0 .sh | sed -e 's/^no-rpath-//')
88
fi
99

1010
SCRATCH=scratch/no-rpath-$ARCH

0 commit comments

Comments
 (0)