Skip to content

Commit 8a150a9

Browse files
authored
Control unit tests being run with -category -exclude and using prefix. (shader-slang#637)
Unit tests appear in unit-test category Unit tests 'appear' in a directory unit-tests Removed the -unitTests option
1 parent 24ad492 commit 8a150a9

File tree

2 files changed

+31
-22
lines changed

2 files changed

+31
-22
lines changed

test.bat

-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,3 @@ SET "PATH=%PATH%;%SLANG_TEST_BIN_DIR%"
5656
:: TODO: Maybe we should actually invoke `msbuild` to make sure all the code is up to date?
5757

5858
"%SLANG_TEST_BIN_DIR%slang-test.exe" -bindir "%SLANG_TEST_BIN_DIR%\" %*
59-
"%SLANG_TEST_BIN_DIR%slang-test.exe" -bindir "%SLANG_TEST_BIN_DIR%\" -unitTests

tools/slang-test/main.cpp

+31-21
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,6 @@ struct Options
113113
// By default we potentially synthesize test for all
114114
// TODO: Vulkan is disabled by default for now as the majority as vulkan synthesized tests fail
115115
RenderApiFlags synthesizedTestApis = RenderApiFlag::AllOf & ~RenderApiFlag::Vulkan;
116-
117-
// Set this to turn on unit tests
118-
bool unitTests = false;
119116
};
120117

121118
// Globals
@@ -286,10 +283,6 @@ Result parseOptions(int* argc, char** argv)
286283
return res;
287284
}
288285
}
289-
else if (strcmp(arg, "-unitTests") == 0)
290-
{
291-
g_options.unitTests = true;
292-
}
293286
else
294287
{
295288
fprintf(stderr, "unknown option '%s'\n", arg);
@@ -1845,6 +1838,7 @@ static bool endsWithAllowedExtension(
18451838
".tesc",
18461839
".tese",
18471840
".comp",
1841+
".internal",
18481842
nullptr };
18491843

18501844
for( auto ii = allowedExtensions; *ii; ++ii )
@@ -1913,6 +1907,7 @@ int main(
19131907

19141908
auto vulkanTestCategory = addTestCategory("vulkan", fullTestCategory);
19151909

1910+
auto unitTestCatagory = addTestCategory("unit-test", fullTestCategory);
19161911

19171912
// An un-categorized test will always belong to the `full` category
19181913
g_defaultTestCategory = fullTestCategory;
@@ -1944,35 +1939,50 @@ int main(
19441939

19451940
context.m_dumpOutputOnFailure = g_options.dumpOutputOnFailure;
19461941
context.m_isVerbose = g_options.shouldBeVerbose;
1947-
1948-
if (g_options.unitTests)
1942+
1943+
// Enumerate test files according to policy
1944+
// TODO: add more directories to this list
1945+
// TODO: allow for a command-line argument to select a particular directory
1946+
runTestsInDirectory(&context, "tests/");
1947+
1948+
// Run the unit tests (these are internal C++ tests - not specified via files in a directory)
1949+
// They are registered with SLANG_UNIT_TEST macro
19491950
{
19501951
TestContext::set(&context);
19511952

19521953
// Run the unit tests
19531954
TestRegister* cur = TestRegister::s_first;
19541955
while (cur)
19551956
{
1956-
context.startTest(cur->m_name);
1957-
1958-
// Run the test function
1959-
cur->m_func();
1957+
StringBuilder filePath;
1958+
filePath << "unit-tests/" << cur->m_name << ".internal";
19601959

1961-
context.endTest();
1960+
TestOptions testOptions;
1961+
testOptions.categories.Add(unitTestCatagory);
1962+
testOptions.command = filePath;
19621963

1964+
if (shouldRunTest(&context, testOptions.command))
1965+
{
1966+
if (testPassesCategoryMask(&context, testOptions))
1967+
{
1968+
context.startTest(testOptions.command);
1969+
// Run the test function
1970+
cur->m_func();
1971+
context.endTest();
1972+
}
1973+
else
1974+
{
1975+
context.addTest(testOptions.command, TestResult::Ignored);
1976+
}
1977+
}
1978+
19631979
// Next
19641980
cur = cur->m_next;
19651981
}
19661982

19671983
TestContext::set(nullptr);
19681984
}
1969-
else
1970-
{
1971-
// Enumerate test files according to policy
1972-
// TODO: add more directories to this list
1973-
// TODO: allow for a command-line argument to select a particular directory
1974-
runTestsInDirectory(&context, "tests/");
1975-
}
1985+
19761986

19771987
context.outputSummary();
19781988

0 commit comments

Comments
 (0)