diff --git a/Makefile b/Makefile index 020b24c..e705521 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -it: +all: %: FORCE ./redo $@ diff --git a/redo.py b/redo.py index 9b6d038..fa73af3 100755 --- a/redo.py +++ b/redo.py @@ -11,7 +11,7 @@ v,verbose print commands as they are run o = options.Options('redo', optspec) (opt, flags, extra) = o.parse(sys.argv[1:]) -targets = extra or ['it'] +targets = extra or ['all'] if opt.debug: os.environ['REDO_DEBUG'] = '1' diff --git a/runtests.do b/runtests.do index b318e64..579dcfd 100644 --- a/runtests.do +++ b/runtests.do @@ -1,5 +1,5 @@ . wvtest.sh -redo t/it +redo t/all WVSTART "t/runtests" WVPASS redo t/runtests diff --git a/t/runtests.do b/t/runtests.do index a6be69e..8aebc56 100644 --- a/t/runtests.do +++ b/t/runtests.do @@ -1,2 +1,2 @@ -redo-ifchange it +redo-ifchange all ./hello >&2 diff --git a/test.do b/test.do index fc4e03e..9c0ada5 100644 --- a/test.do +++ b/test.do @@ -1,4 +1,4 @@ -redo-ifchange t/it +redo-ifchange t/all wvtestrun redo runtests >&2