From: Gabe Black Date: Tue, 1 Sep 2020 03:51:06 +0000 (-0700) Subject: test: Remove refcnttest from the unittest SConscript. X-Git-Tag: v20.1.0.0~171 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e2fc29076a694df349a2435c7f80fb5eeeb0f532;p=gem5.git test: Remove refcnttest from the unittest SConscript. The test itself was removed, but it was left in the SConscript. If you tell scons to build everything in that directory, it will try to build that test and fail. Change-Id: I1e3923b0de12e891f53dab6f4e6e3e2b6975dc45 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/33896 Reviewed-by: Nikos Nikoleris Reviewed-by: Daniel Carvalho Maintainer: Jason Lowe-Power Tested-by: kokoro --- diff --git a/src/unittest/SConscript b/src/unittest/SConscript index 3922e9ed9..19b254232 100644 --- a/src/unittest/SConscript +++ b/src/unittest/SConscript @@ -32,7 +32,6 @@ Source('unittest.cc') UnitTest('cprintftime', 'cprintftime.cc') UnitTest('nmtest', 'nmtest.cc') -UnitTest('refcnttest', 'refcnttest.cc') stattest_py = PySource('m5', 'stattestmain.py', tags='stattest') UnitTest('stattest', 'stattest.cc', with_tag('stattest'), main=True)