svnno****@sourc*****
svnno****@sourc*****
2016年 7月 7日 (木) 20:45:56 JST
Revision: 6432 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/6432 Author: doda Date: 2016-07-07 20:45:56 +0900 (Thu, 07 Jul 2016) Log Message: ----------- params を使うように変更 Modified Paths: -------------- trunk/tests/macroparam.ttl -------------- next part -------------- Modified: trunk/tests/macroparam.ttl =================================================================== --- trunk/tests/macroparam.ttl 2016-07-07 11:45:54 UTC (rev 6431) +++ trunk/tests/macroparam.ttl 2016-07-07 11:45:56 UTC (rev 6432) @@ -46,15 +46,15 @@ ; param6: test1 ; if paramcnt <> 6 goto error -strcompare param2 "/vxx" +strcompare params[2] "/vxx" if result <> 0 goto error -strcompare param3 "/ixx" +strcompare params[3] "/ixx" if result <> 0 goto error -strcompare param4 "/V" +strcompare params[4] "/V" if result <> 0 goto error -strcompare param5 "/i" +strcompare params[5] "/i" if result <> 0 goto error -strcompare param6 "test1" +strcompare params[6] "test1" if result <> 0 goto error goto end @@ -68,11 +68,11 @@ ; param4: test2 ; if paramcnt <> 4 goto error -strcompare param2 "/v" +strcompare params[2] "/v" if result <> 0 goto error -strcompare param3 "/I" +strcompare params[3] "/I" if result <> 0 goto error -strcompare param4 "test2" +strcompare params[4] "test2" if result <> 0 goto error goto end @@ -89,15 +89,15 @@ ; param6: /i ; if paramcnt <> 6 goto error -strcompare param2 "test3" +strcompare params[2] "test3" if result <> 0 goto error -strcompare param3 "/Vxx" +strcompare params[3] "/Vxx" if result <> 0 goto error -strcompare param4 "/ixx" +strcompare params[4] "/ixx" if result <> 0 goto error -strcompare param5 "/V" +strcompare params[5] "/V" if result <> 0 goto error -strcompare param6 "/i" +strcompare params[6] "/i" if result <> 0 goto error goto end @@ -113,13 +113,13 @@ ; param5: /ixx ; if paramcnt <> 5 goto error -strcompare param2 "test4" +strcompare params[2] "test4" if result <> 0 goto error -strcompare param3 "/V" +strcompare params[3] "/V" if result <> 0 goto error -strcompare param4 "/Vxx" +strcompare params[4] "/Vxx" if result <> 0 goto error -strcompare param5 "/ixx" +strcompare params[5] "/ixx" if result <> 0 goto error goto end