aboutsummaryrefslogtreecommitdiff
path: root/tests/tests2/31_args.c
diff options
context:
space:
mode:
authorgrischka <grischka>2014-04-07 11:20:45 +0200
committergrischka <grischka>2014-04-07 11:20:45 +0200
commitf90bad092510c751afbd9286b9946691a416d2a1 (patch)
treeade8035d4181b3b962434670e63808cdfb772cf3 /tests/tests2/31_args.c
parent76accfb8d5b16664207fa8ae43d02b015bc8e019 (diff)
downloadtinycc-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.c2
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;