Skip to content

Commit

Permalink
updating test script
Browse files Browse the repository at this point in the history
  • Loading branch information
agracio committed Feb 4, 2025
1 parent 1d31675 commit d412a62
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions tools/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,19 @@ function build(){
if (code === 0) {
try{
fs.mkdirSync('test/测试', { recursive: true })

}
catch (e){
console.error(e)
console.error(e);
throw e;
}
run('cp', ['../test/bin/Debug/net6.0/test.dll', '../test/测试/Edge.Tests.CoreClr.dll'], runOnSuccess);
fs.copyFile('test/bin/Debug/net6.0/test.dll', 'test/测试/Edge.Tests.CoreClr.dll', (e) => {
if (e) {
console.error(e);
throw e;
}
runOnSuccess(0);
});
//run('cp', ['../test/bin/Debug/net6.0/test.dll', '../test/测试/Edge.Tests.CoreClr.dll'], runOnSuccess);
}
});
}
Expand Down

0 comments on commit d412a62

Please sign in to comment.