mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
Current stable release is nearly three years old and lacks a number of new features and performance improvements. A fortnight ago, upstream had tagged pre-release 2.2.1-alpha, which this port offers to early adopters.
32 lines
908 B
Bash
32 lines
908 B
Bash
regress runs multiple tests, don't silence it completely.
|
|
|
|
https://github.com/libevent/libevent/pull/446
|
|
|
|
--- test/test.sh.orig 2017-01-25 23:37:15 UTC
|
|
+++ test/test.sh
|
|
@@ -99,10 +99,10 @@ run_tests () {
|
|
fi
|
|
|
|
test -x $TEST_DIR/regress || return
|
|
- announce_n " regress: "
|
|
+ announce " regress: [multiple tests]"
|
|
if test "$TEST_OUTPUT_FILE" = "/dev/null" ;
|
|
then
|
|
- $TEST_DIR/regress --quiet $REGRESS_ARGS
|
|
+ $TEST_DIR/regress $REGRESS_ARGS
|
|
else
|
|
$TEST_DIR/regress $REGRESS_ARGS >>"$TEST_OUTPUT_FILE"
|
|
fi
|
|
@@ -114,10 +114,10 @@ run_tests () {
|
|
FAILED=yes
|
|
fi
|
|
|
|
- announce_n " regress_debug: "
|
|
+ announce " regress_debug: [multiple tests]"
|
|
if test "$TEST_OUTPUT_FILE" = "/dev/null" ;
|
|
then
|
|
- EVENT_DEBUG_MODE=1 $TEST_DIR/regress --quiet $REGRESS_ARGS
|
|
+ EVENT_DEBUG_MODE=1 $TEST_DIR/regress $REGRESS_ARGS
|
|
else
|
|
EVENT_DEBUG_MODE=1 $TEST_DIR/regress $REGRESS_ARGS >>"$TEST_OUTPUT_FILE"
|
|
fi
|