diff options
| author | Yong He <yonghe@outlook.com> | 2023-10-26 16:19:02 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-26 16:19:02 -0700 |
| commit | 1ac6638cf618a7f2bf761ac6ca57e7e7f4c754dc (patch) | |
| tree | ee5616325835b3c609654513584928a639e25cf0 | |
| parent | aed3bd60c0b17403c079dcb0b64edf09439375cf (diff) | |
Disable frexp test on swiftshader. (#3294)
* Disable frexp test on swiftshader.
* Fix windows release script.
---------
Co-authored-by: Yong He <yhe@nvidia.com>
| -rw-r--r-- | .github/workflows/release-windows.yml | 4 | ||||
| -rw-r--r-- | tests/bugs/frexp-double.slang | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release-windows.yml b/.github/workflows/release-windows.yml index 6dce54dcc..e26339ca6 100644 --- a/.github/workflows/release-windows.yml +++ b/.github/workflows/release-windows.yml @@ -61,7 +61,7 @@ jobs: $binArchive = "slang-$slangVersion-$slangDeployPlatform.zip" echo "name=SLANG_BINARY_ARCHIVE::$binArchive" - echo "SLANG_WIN32_BINARY_ARCHIVE=$binArchive" >> $GITHUB_OUTPUT + echo "SLANG_WIN32_BINARY_ARCHIVE=$binArchive" >> $env:GITHUB_OUTPUT 7z a "$binArchive" slang.h 7z a "$binArchive" slang-com-helper.h @@ -82,7 +82,7 @@ jobs: 7z a "$binArchive" docs\*.md $srcArchive = "slang-$slangVersion-source.zip" - echo "SLANG_SOURCE_ARCHIVE=$srcArchive" >> $GITHUB_OUTPUT + echo "SLANG_SOURCE_ARCHIVE=$srcArchive" >> $env:GITHUB_OUTPUT 7z a "$srcArchive" slang.h 7z a "$srcArchive" slang-com-helper.h diff --git a/tests/bugs/frexp-double.slang b/tests/bugs/frexp-double.slang index 1ad5a57e8..1a262c8af 100644 --- a/tests/bugs/frexp-double.slang +++ b/tests/bugs/frexp-double.slang @@ -1,8 +1,8 @@ //TEST(smoke,compute):COMPARE_COMPUTE(filecheck-buffer=BUF):-output-using-type //TEST(smoke,compute):COMPARE_COMPUTE(filecheck-buffer=BUF):-dx12 -use-dxil -output-using-type //TEST(smoke,compute):COMPARE_COMPUTE(filecheck-buffer=BUF):-cpu -output-using-type -//TEST(smoke,compute):COMPARE_COMPUTE(filecheck-buffer=BUF):-vk -output-using-type -//TEST(smoke,compute):COMPARE_COMPUTE(filecheck-buffer=BUF):-vk -emit-spirv-directly -output-using-type +//TEST(smoke,compute):COMPARE_COMPUTE(filecheck-buffer=BUF):-vk -output-using-type -render-feature double +//TEST(smoke,compute):COMPARE_COMPUTE(filecheck-buffer=BUF):-vk -emit-spirv-directly -output-using-type -render-feature double //TEST(smoke,compute):COMPARE_COMPUTE(filecheck-buffer=BUF):-cuda -output-using-type // BUF: type: int32_t |
