diff --git a/src/base/SConscript b/src/base/SConscript index 7aa93f5049..13c1ffff59 100644 --- a/src/base/SConscript +++ b/src/base/SConscript @@ -76,6 +76,8 @@ Source('loader/symtab.cc') Source('stats/text.cc') +GTest('bituniontest', 'bituniontest.cc') + DebugFlag('Annotate', "State machine annotation debugging") DebugFlag('AnnotateQ', "State machine annotation queue debugging") DebugFlag('AnnotateVerbose', "Dump all state machine annotation details") diff --git a/src/unittest/bituniontest.cc b/src/base/bituniontest.cc similarity index 100% rename from src/unittest/bituniontest.cc rename to src/base/bituniontest.cc diff --git a/src/unittest/SConscript b/src/unittest/SConscript index cca3336b26..37529e3fe5 100644 --- a/src/unittest/SConscript +++ b/src/unittest/SConscript @@ -32,7 +32,6 @@ Import('*') Source('unittest.cc') -GTest('bituniontest', 'bituniontest.cc') UnitTest('bitvectest', 'bitvectest.cc') UnitTest('circlebuf', 'circlebuf.cc') UnitTest('cprintftest', 'cprintftest.cc')