Skip to content

Commit 2c562ae

Browse files
author
Sheen (Shen) Tian
committed
Fix the test script
1 parent f794287 commit 2c562ae

File tree

1 file changed

+20
-21
lines changed

1 file changed

+20
-21
lines changed

RunAllDemo.bat

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,37 @@
11
@ECHO OFF
22
@COLOR 1A
33
ECHO ========================Run all demos for x86-Debug==============================
4-
pwd
5-
@pushd
6-
@CD output\demo\x86\Debug
7-
FOR /r . %%i IN (*.exe) DO (
8-
ECHO %%i
4+
pushd .
5+
CD output\demo\x86\Debug
6+
FOR /r %%i IN (*.exe) DO (
7+
ECHO Running:%%i
98
%%i
109
)
11-
@popd
10+
popd
1211

1312
ECHO ========================Run all demos for x86-Release==============================
14-
@pushd
15-
@CD output\demo\x86\Release
16-
FOR /r . %%i IN (*.exe) DO (
17-
ECHO %%i
13+
pushd .
14+
CD output\demo\x86\Release
15+
FOR /r %%i IN (*.exe) DO (
16+
ECHO Running:%%i
1817
%%i
1918
)
20-
@popd
19+
popd
2120

2221
ECHO ========================Run all demos for x64-Debug==============================
23-
@pushd
24-
@CD output\demo\x64\Debug
25-
FOR /r . %%i in (*.exe) DO (
26-
ECHO %%i
22+
pushd .
23+
CD output\demo\x64\Debug
24+
FOR /r %%i in (*.exe) DO (
25+
ECHO Running:%%i
2726
%%i
2827
)
29-
@popd
28+
popd
3029

3130
ECHO ========================Run all demos for x64-Release==============================
32-
@pushd
33-
@CD output\demo\x64\Release
34-
FOR /r . %%i in (*.exe) DO (
35-
ECHO %%i
31+
pushd .
32+
CD output\demo\x64\Release
33+
FOR /r %%i in (*.exe) DO (
34+
ECHO Running:%%i
3635
%%i
3736
)
38-
@popd
37+
popd

0 commit comments

Comments
 (0)