diff options
| author | grischka <grischka> | 2014-04-07 11:20:45 +0200 |
|---|---|---|
| committer | grischka <grischka> | 2014-04-07 11:20:45 +0200 |
| commit | f90bad092510c751afbd9286b9946691a416d2a1 (patch) | |
| tree | ade8035d4181b3b962434670e63808cdfb772cf3 /tests/tests2/31_args.c | |
| parent | 76accfb8d5b16664207fa8ae43d02b015bc8e019 (diff) | |
| download | tinycc-f90bad092510c751afbd9286b9946691a416d2a1.tar.gz tinycc-f90bad092510c751afbd9286b9946691a416d2a1.tar.bz2 | |
tests2: cleanup
- remove -norunsrc switch
Meaning and usage (-run -norun...???) look sort of screwed. Also
general usefulness is unclear, so it was actually to support exactly
one (not even very interesting) test
This partially reverts e31579b0769e1f9c0947d12e83316d1149307b1a
Diffstat (limited to 'tests/tests2/31_args.c')
| -rw-r--r-- | tests/tests2/31_args.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tests2/31_args.c b/tests/tests2/31_args.c index 275f8cf..dcafed5 100644 --- a/tests/tests2/31_args.c +++ b/tests/tests2/31_args.c @@ -5,7 +5,7 @@ int main(int argc, char **argv) int Count; printf("hello world %d\n", argc); - for (Count = 0; Count < argc; Count++) + for (Count = 1; Count < argc; Count++) printf("arg %d: %s\n", Count, argv[Count]); return 0; |
