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

15 lines
270 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
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"