@@ -71,6 +71,9 @@ struct Options {
71
71
cl::opt<bool > json{" json" , cl::desc (" Emit test list as JSON array" ),
72
72
cl::init (false ), cl::cat (cat)};
73
73
74
+ cl::opt<bool > listIgnored{" list-ignored" , cl::desc (" List ignored tests" ),
75
+ cl::init (false ), cl::cat (cat)};
76
+
74
77
cl::opt<std::string> resultDir{
75
78
" d" , cl::desc (" Result directory (default `.circt-test`)" ),
76
79
cl::value_desc (" dir" ), cl::init (" .circt-test" ), cl::cat (cat)};
@@ -107,6 +110,8 @@ class Test {
107
110
// / An optional location indicating where this test was discovered. This can
108
111
// / be the location of an MLIR op, or a line in some other source file.
109
112
LocationAttr loc;
113
+ // / Whether or not the test should be ignored
114
+ bool ignore;
110
115
// / The user-defined attributes of this test.
111
116
DictionaryAttr attrs;
112
117
};
@@ -120,7 +125,10 @@ class TestSuite {
120
125
// / The tests discovered in the input.
121
126
std::vector<Test> tests;
122
127
123
- TestSuite (MLIRContext *context) : context(context) {}
128
+ bool listIgnored;
129
+
130
+ TestSuite (MLIRContext *context, bool listIgnored)
131
+ : context(context), listIgnored(listIgnored) {}
124
132
void discoverInModule (ModuleOp module);
125
133
};
126
134
} // namespace
@@ -141,6 +149,10 @@ void TestSuite::discoverInModule(ModuleOp module) {
141
149
test.name = op.getSymNameAttr ();
142
150
test.kind = TestKind::Formal;
143
151
test.loc = op.getLoc ();
152
+ if (auto boolAttr = op->getAttrOfType <BoolAttr>(" ignore" ))
153
+ test.ignore = boolAttr.getValue ();
154
+ else
155
+ test.ignore = false ;
144
156
test.attrs = op->getDiscardableAttrDictionary ();
145
157
tests.push_back (std::move (test));
146
158
});
@@ -150,6 +162,11 @@ void TestSuite::discoverInModule(ModuleOp module) {
150
162
// Tool Implementation
151
163
// ===----------------------------------------------------------------------===//
152
164
165
+ // Check if test should be included in output listing
166
+ bool ignoreTestListing (Test &test, TestSuite &suite) {
167
+ return !suite.listIgnored && test.ignore ;
168
+ }
169
+
153
170
// / List all the tests in a given module.
154
171
static LogicalResult listTests (TestSuite &suite) {
155
172
// Open the output file for writing.
@@ -164,6 +181,8 @@ static LogicalResult listTests(TestSuite &suite) {
164
181
json.arrayBegin ();
165
182
auto guard = make_scope_exit ([&] { json.arrayEnd (); });
166
183
for (auto &test : suite.tests ) {
184
+ if (ignoreTestListing (test, suite))
185
+ continue ;
167
186
json.objectBegin ();
168
187
auto guard = make_scope_exit ([&] { json.objectEnd (); });
169
188
json.attribute (" name" , test.name .getValue ());
@@ -182,13 +201,22 @@ static LogicalResult listTests(TestSuite &suite) {
182
201
}
183
202
184
203
// Handle regular text output.
185
- for (auto &test : suite.tests )
204
+ for (auto &test : suite.tests ) {
205
+ if (ignoreTestListing (test, suite))
206
+ continue ;
186
207
output->os () << test.name .getValue () << " " << toString (test.kind ) << " "
187
208
<< test.attrs << " \n " ;
209
+ }
188
210
output->keep ();
189
211
return success ();
190
212
}
191
213
214
+ void reportIgnored (unsigned numIgnored) {
215
+ if (numIgnored > 0 )
216
+ WithColor (llvm::errs (), raw_ostream::SAVEDCOLOR, true ).get ()
217
+ << " , " << numIgnored << " ignored" ;
218
+ }
219
+
192
220
// / Entry point for the circt-test tool. At this point an MLIRContext is
193
221
// / available, all dialects have been registered, and all command line options
194
222
// / have been parsed.
@@ -202,7 +230,7 @@ static LogicalResult execute(MLIRContext *context) {
202
230
return failure ();
203
231
204
232
// Discover all tests in the input.
205
- TestSuite suite (context);
233
+ TestSuite suite (context, opts. listIgnored );
206
234
suite.discoverInModule (*module);
207
235
if (suite.tests .empty ()) {
208
236
llvm::errs () << " no tests discovered\n " ;
@@ -254,7 +282,12 @@ static LogicalResult execute(MLIRContext *context) {
254
282
255
283
// Run the tests.
256
284
std::atomic<unsigned > numPassed (0 );
285
+ std::atomic<unsigned > numIgnored (0 );
257
286
mlir::parallelForEach (context, suite.tests , [&](auto &test) {
287
+ if (test.ignore ) {
288
+ ++numIgnored;
289
+ return ;
290
+ }
258
291
// Create the directory in which we are going to run the test.
259
292
SmallString<128 > testDir (opts.resultDir );
260
293
llvm::sys::path::append (testDir, test.name .getValue ());
@@ -302,18 +335,21 @@ static LogicalResult execute(MLIRContext *context) {
302
335
});
303
336
304
337
// Print statistics about how many tests passed and failed.
305
- assert (numPassed <= suite.tests .size ());
306
- unsigned numFailed = suite.tests .size () - numPassed;
338
+ assert (( numPassed + numIgnored) <= suite.tests .size ());
339
+ unsigned numFailed = suite.tests .size () - numPassed - numIgnored ;
307
340
if (numFailed > 0 ) {
308
341
WithColor (llvm::errs (), raw_ostream::SAVEDCOLOR, true ).get ()
309
342
<< numFailed << " tests " ;
310
343
WithColor (llvm::errs (), raw_ostream::RED, true ).get () << " FAILED" ;
311
- llvm::errs () << " , " << numPassed << " passed\n " ;
344
+ llvm::errs () << " , " << numPassed << " passed" ;
345
+ reportIgnored (numIgnored);
346
+ llvm::errs () << " \n " ;
312
347
return failure ();
313
348
}
314
349
WithColor (llvm::errs (), raw_ostream::SAVEDCOLOR, true ).get ()
315
- << " all " << numPassed << " tests " ;
350
+ << numPassed << " tests " ;
316
351
WithColor (llvm::errs (), raw_ostream::GREEN, true ).get () << " passed" ;
352
+ reportIgnored (numIgnored);
317
353
llvm::errs () << " \n " ;
318
354
return success ();
319
355
}
0 commit comments