change bat calling from powershell. Change asm test to test system

This commit is contained in:
Daniel Donenfeld 2019-02-14 12:05:53 -08:00
parent 92b096d7d4
commit 1b6295ebe1
2 changed files with 3 additions and 3 deletions

View File

@ -149,7 +149,7 @@ before_deploy:
Write-Host "[before_deploy] About to call push_asm batch script!"
.\asm\scripts\push_asm.bat
cmd.exe /c 'asm\scripts\push_asm.bat'
Write-Host "[before_deploy] after push asm!"
}

View File

@ -48,8 +48,8 @@ bool foo()
span<const int> cs;
ret = ret || (cs.size() == 0 && cs.data() == nullptr);
span<int> s2{};
ret = ret || (s2.size() == 0 && s2.data() == nullptr);
// span<int> s2{};
// ret = ret || (s2.size() == 0 && s2.data() == nullptr);
return ret;
}