@@ -113,9 +113,6 @@ struct Options
113
113
// By default we potentially synthesize test for all
114
114
// TODO: Vulkan is disabled by default for now as the majority as vulkan synthesized tests fail
115
115
RenderApiFlags synthesizedTestApis = RenderApiFlag::AllOf & ~RenderApiFlag::Vulkan;
116
-
117
- // Set this to turn on unit tests
118
- bool unitTests = false ;
119
116
};
120
117
121
118
// Globals
@@ -286,10 +283,6 @@ Result parseOptions(int* argc, char** argv)
286
283
return res;
287
284
}
288
285
}
289
- else if (strcmp (arg, " -unitTests" ) == 0 )
290
- {
291
- g_options.unitTests = true ;
292
- }
293
286
else
294
287
{
295
288
fprintf (stderr, " unknown option '%s'\n " , arg);
@@ -1845,6 +1838,7 @@ static bool endsWithAllowedExtension(
1845
1838
" .tesc" ,
1846
1839
" .tese" ,
1847
1840
" .comp" ,
1841
+ " .internal" ,
1848
1842
nullptr };
1849
1843
1850
1844
for ( auto ii = allowedExtensions; *ii; ++ii )
@@ -1913,6 +1907,7 @@ int main(
1913
1907
1914
1908
auto vulkanTestCategory = addTestCategory (" vulkan" , fullTestCategory);
1915
1909
1910
+ auto unitTestCatagory = addTestCategory (" unit-test" , fullTestCategory);
1916
1911
1917
1912
// An un-categorized test will always belong to the `full` category
1918
1913
g_defaultTestCategory = fullTestCategory;
@@ -1944,35 +1939,50 @@ int main(
1944
1939
1945
1940
context.m_dumpOutputOnFailure = g_options.dumpOutputOnFailure ;
1946
1941
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
1949
1950
{
1950
1951
TestContext::set (&context);
1951
1952
1952
1953
// Run the unit tests
1953
1954
TestRegister* cur = TestRegister::s_first;
1954
1955
while (cur)
1955
1956
{
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" ;
1960
1959
1961
- context.endTest ();
1960
+ TestOptions testOptions;
1961
+ testOptions.categories .Add (unitTestCatagory);
1962
+ testOptions.command = filePath;
1962
1963
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
+
1963
1979
// Next
1964
1980
cur = cur->m_next ;
1965
1981
}
1966
1982
1967
1983
TestContext::set (nullptr );
1968
1984
}
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
+
1976
1986
1977
1987
context.outputSummary ();
1978
1988
0 commit comments