blob: fdbc696cfaa1afb5b806dfed1f7e30eedfbdcdca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
$NetBSD: patch-ac,v 1.6 2022/03/04 13:55:13 ryoon Exp $
portability
--- tests/testrun.sh.orig 2021-10-25 13:05:43.000000000 +0000
+++ tests/testrun.sh
@@ -1,7 +1,7 @@
#!/bin/sh
-OS_ARCH=`uname -o`
-OS_KERNEL=`uname -s`
+OS_ARCH=xxx
+#OS_KERNEL=`uname -s`
#
# Get command line params
@@ -472,7 +472,7 @@ execEncTest() {
rm -rf $tmpfile $tmpfile.2 tmpfile.3
# run tests
-source "$testfile"
+. "$testfile"
# print results
echo "--- TOTAL OK: $count_success; TOTAL FAILED: $count_fail; TOTAL SKIPPED: $count_skip" >> $logfile
|