ports/comms/minimodem/patches/patch-tests_run-self-tests

14 lines
270 B
Text

Index: tests/run-self-tests
--- tests/run-self-tests.orig
+++ tests/run-self-tests
@@ -1,8 +1,8 @@
-#!/bin/bash
+#!/bin/sh
for testcase in ./*.test
do
- $testcase
+ sh $testcase
if [ $? -eq 0 ]
then echo "PASS: $testcase"
else echo "FAIL: $testcase"