After the re-factor common.rc has been renamed to common/rc, fix the
path in script new, otherwise ./new reports
./new: line 26: ./common.rc: No such file or directory
Building include
Building lib
Building ltp
Building src
Building m4
./new: line 70: BEGIN{printf "%03d\n",+1}: command not found
Next test is
Error: test already exists!
Signed-off-by: Eryu Guan <eguan@xxxxxxxxxx>
---
After applying this patch, ./new generates new test starting from 001,
so we have to maintain the seq number manually? Do we need an updated
version of new? eg. takes an argument to specify the test type like
./new generic
and generates new test based on existing seq number in generic dir.
new | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/new b/new
index 94638f6..b21e75b 100755
--- a/new
+++ b/new
@@ -23,7 +23,7 @@
# generic initialization
iam=new
-. ./common.rc
+. ./common/rc
trap "rm -f /tmp/$$.; exit" 0 1 2 3 15
--
1.8.1.4
|