From 93c37f17fc7ce3a819169beec81680eb2f61f034 Mon Sep 17 00:00:00 2001 From: Harald van Dijk Date: Mon, 6 Oct 2025 19:11:22 +0100 Subject: [PATCH] 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 --- test_conformance/compiler/main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test_conformance/compiler/main.cpp b/test_conformance/compiler/main.cpp index 3845f2fd..5d07159b 100644 --- a/test_conformance/compiler/main.cpp +++ b/test_conformance/compiler/main.cpp @@ -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()