One last file path fix for test_compiler. (#2534)

Although run_conformance.py runs from test_conformance, it will change
the current working directory before launching each individual test.
Adjust the path accordingly.

Co-authored-by: Ben Ashbaugh <ben.ashbaugh@intel.com>
This commit is contained in:
Harald van Dijk
2025-10-06 19:11:22 +01:00
committed by GitHub
parent e92140f82d
commit 93c37f17fc

View File

@@ -19,8 +19,7 @@
#include "harness/testHarness.h"
#include "harness/stringHelpers.h"
std::string spvBinariesPath =
to_string((std::filesystem::path("compiler") / "spirv_bin").u8string());
std::string spvBinariesPath = "spirv_bin";
const std::string spvBinariesPathArg = "--spirv-binaries-path";
void printUsage()