| /src/external/apache2/llvm/dist/llvm/tools/llvm-reduce/deltas/ |
| ReduceAliases.h | 20 void reduceAliasesDeltaPass(TestRunner &Test);
|
| ReduceArguments.h | 23 void reduceArgumentsDeltaPass(TestRunner &Test);
|
| ReduceBasicBlocks.h | 21 void reduceBasicBlocksDeltaPass(TestRunner &Test);
|
| ReduceFunctionBodies.h | 20 void reduceFunctionBodiesDeltaPass(TestRunner &Test);
|
| ReduceFunctions.h | 21 void reduceFunctionsDeltaPass(TestRunner &Test);
|
| ReduceGlobalValues.h | 20 void reduceGlobalValuesDeltaPass(TestRunner &Test);
|
| ReduceGlobalVarInitializers.h | 22 void reduceGlobalsInitializersDeltaPass(TestRunner &Test);
|
| ReduceGlobalVars.h | 22 void reduceGlobalsDeltaPass(TestRunner &Test);
|
| ReduceInstructions.h | 22 void reduceInstructionsDeltaPass(TestRunner &Test);
|
| ReduceMetadata.h | 20 void reduceMetadataDeltaPass(TestRunner &Test);
|
| ReduceModuleInlineAsm.h | 15 void reduceModuleInlineAsmDeltaPass(TestRunner &Test);
|
| ReduceSpecialGlobals.h | 23 void reduceSpecialGlobalsDeltaPass(TestRunner &Test);
|
| ReduceAttributes.h | 19 void reduceAttributesDeltaPass(TestRunner &Test);
|
| ReduceOperandBundles.h | 19 void reduceOperandBundesDeltaPass(TestRunner &Test);
|
| ReduceModuleInlineAsm.cpp | 29 void llvm::reduceModuleInlineAsmDeltaPass(TestRunner &Test) { 31 runDeltaPass(Test, 1, clearModuleInlineAsm);
|
| ReduceAliases.cpp | 48 void llvm::reduceAliasesDeltaPass(TestRunner &Test) { 50 int Functions = countAliases(Test.getProgram()); 51 runDeltaPass(Test, Functions, extractAliasesFromModule);
|
| ReduceFunctionBodies.cpp | 52 void llvm::reduceFunctionBodiesDeltaPass(TestRunner &Test) { 54 int Functions = countFunctionDefinitions(Test.getProgram()); 55 runDeltaPass(Test, Functions, extractFunctionBodiesFromModule);
|
| /src/tests/lib/csu/ |
| h_initfini_common.cxx | 9 class Test { 11 Test() 23 ~Test() 37 Test test; variable
|
| /src/usr.bin/make/unit-tests/ |
| meta-output.exp | 0 Test -B output 6 Test -j1 output
|
| /src/external/apache2/llvm/dist/llvm/utils/lit/examples/many-tests/ |
| ManyTests.py | 1 from lit import Test 10 test_name = "test-%04d" % (i,) 11 yield Test.Test(testSuite, path_in_suite + (test_name,), localConfig) 13 def execute(self, test, litConfig): 18 return Test.PASS, ""
|
| /src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/test-data-micro/ |
| dummy_format.py | 8 import lit.Test 11 def execute(self, test, lit_config): 12 # In this dummy format, expect that each test file is actually just a 15 source_path = test.getSourcePath() 20 # Create the basic test result. 23 result = lit.Test.Result(getattr(lit.Test, result_code), 30 metric = lit.Test.IntMetricValue(value) 32 metric = lit.Test.RealMetricValue(value) 37 # Create micro test result [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/test-data/ |
| dummy_format.py | 8 import lit.Test 11 def execute(self, test, lit_config): 12 # In this dummy format, expect that each test file is actually just a 15 source_path = test.getSourcePath() 20 # Create the basic test result. 23 result = lit.Test.Result(getattr(lit.Test, result_code), 30 metric = lit.Test.IntMetricValue(value) 32 metric = lit.Test.RealMetricValue(value)
|
| /src/external/apache2/llvm/dist/llvm/utils/lit/tests/ |
| unparsed-requirements.py | 4 from lit.Test import Result, Test, TestSuite 11 test = Test(suite, ["test.py"], config) variable 12 test.requires = ["meow"] 13 test.unsupported = ["alpha"] 14 test.xfails = ["foo"] 16 parseIntegratedTestScript(test) 19 if test.requires != ["meow", "woof", "quack"] [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/custom-result-category/ |
| format.py | 4 CUSTOM_PASS = lit.Test.ResultCode('CUSTOM_PASS', 'My Passed', False) 5 CUSTOM_FAILURE = lit.Test.ResultCode('CUSTOM_FAILURE', 'My Failed', True) 9 def execute(self, test, lit_config): 10 result = super(MyFormat, self).execute(test, lit_config)
|
| /src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/xunit-output/ |
| dummy_format.py | 8 import lit.Test 11 def execute(self, test, lit_config): 12 # In this dummy format, expect that each test file is actually just a 15 source_path = test.getSourcePath() 20 # Create the basic test result. 23 result = lit.Test.Result(getattr(lit.Test, result_code), 29 test.requires.append(required_feature) 35 metric = lit.Test.IntMetricValue(value) 37 metric = lit.Test.RealMetricValue(value [all...] |