diff --git a/roottest/root/aclic/.rootrc b/roottest/root/aclic/.rootrc deleted file mode 100644 index 6ebe75fd4ec5a..0000000000000 --- a/roottest/root/aclic/.rootrc +++ /dev/null @@ -1 +0,0 @@ -Rint.History: .root_hist diff --git a/roottest/root/aclic/global/.rootrc b/roottest/root/aclic/global/.rootrc deleted file mode 100644 index 6ebe75fd4ec5a..0000000000000 --- a/roottest/root/aclic/global/.rootrc +++ /dev/null @@ -1 +0,0 @@ -Rint.History: .root_hist diff --git a/roottest/root/aclic/global/buildId.C b/roottest/root/aclic/global/buildId.C deleted file mode 100755 index 18a4c8f059cd4..0000000000000 --- a/roottest/root/aclic/global/buildId.C +++ /dev/null @@ -1,3 +0,0 @@ -{ - gSystem->Exit(!gSystem->CompileMacro("id.cxx","k")); -} diff --git a/roottest/root/aclic/load/.rootrc b/roottest/root/aclic/load/.rootrc deleted file mode 100644 index 6ebe75fd4ec5a..0000000000000 --- a/roottest/root/aclic/load/.rootrc +++ /dev/null @@ -1 +0,0 @@ -Rint.History: .root_hist diff --git a/roottest/root/aclic/load/CMakeLists.txt b/roottest/root/aclic/load/CMakeLists.txt index d7677e2780dac..b9516abda39d6 100644 --- a/roottest/root/aclic/load/CMakeLists.txt +++ b/roottest/root/aclic/load/CMakeLists.txt @@ -2,7 +2,8 @@ ROOTTEST_ADD_TEST(autoload COPY_TO_BUILDDIR theRootmap.rootmap MACRO execautoload.C OUTREF execautoload.ref - DEPENDS autoloadtest.C) + DEPENDS autoloadtest.C + FIXTURES_SETUP root-aclic-load-autoload-fixture) if(NOT coverage) ROOTTEST_ADD_TEST(reload @@ -19,5 +20,6 @@ if(NOT MSVC OR win_broken_tests) ROOTTEST_ADD_TEST(autoloadNamespace MACRO execautoloadNamespace.C OUTREF execautoloadNamespace.ref - DEPENDS MyClass.cxx autoload) + DEPENDS MyClass.cxx + FIXTURES_REQUIRED root-aclic-load-autoload-fixture) endif() diff --git a/roottest/root/aclic/misc/.rootrc b/roottest/root/aclic/misc/.rootrc deleted file mode 100644 index 6ebe75fd4ec5a..0000000000000 --- a/roottest/root/aclic/misc/.rootrc +++ /dev/null @@ -1 +0,0 @@ -Rint.History: .root_hist diff --git a/roottest/root/aclic/misc/CMakeLists.txt b/roottest/root/aclic/misc/CMakeLists.txt index 5c2a4661b53e5..b5dc51265a335 100644 --- a/roottest/root/aclic/misc/CMakeLists.txt +++ b/roottest/root/aclic/misc/CMakeLists.txt @@ -1,13 +1,11 @@ ROOTTEST_ADD_TEST(runrelpath MACRO runrelpath.C OUTREF relpath.ref - ${WILLFAIL_ON_WIN32} - DEPENDS ${COMPILE_MACRO_TEST}) + ${WILLFAIL_ON_WIN32}) ROOTTEST_ADD_TEST(assertmyfun MACRO assertmyfun.cxx+ - OUTREF assertmyfun.ref - DEPENDS ${COMPILE_MACRO_TEST}) + OUTREF assertmyfun.ref) ROOTTEST_ADD_TEST(assertROOT7027 MACRO assertROOT7027.C diff --git a/roottest/root/aclic/nolinkdep/.rootrc b/roottest/root/aclic/nolinkdep/.rootrc deleted file mode 100644 index 6ebe75fd4ec5a..0000000000000 --- a/roottest/root/aclic/nolinkdep/.rootrc +++ /dev/null @@ -1 +0,0 @@ -Rint.History: .root_hist diff --git a/roottest/root/aclic/nolinkdep/CMakeLists.txt b/roottest/root/aclic/nolinkdep/CMakeLists.txt index ee4abc1cf1d62..22fe784b7b96b 100644 --- a/roottest/root/aclic/nolinkdep/CMakeLists.txt +++ b/roottest/root/aclic/nolinkdep/CMakeLists.txt @@ -1 +1,49 @@ -# ROOTTEST_ADD_TEST(link MACRO link.C MACROARG 1) +ROOTTEST_COMPILE_MACRO(single.C + FIXTURES_SETUP root-aclic-nolinkdep-single_C-fixture) + +ROOTTEST_COMPILE_MACRO(script1.C + FIXTURES_SETUP root-aclic-nolinkdep-script1_C-fixture) + +ROOTTEST_COMPILE_MACRO(script2.C + BUILDLIB single_C + FIXTURES_REQUIRED root-aclic-nolinkdep-single_C-fixture + FIXTURES_SETUP root-aclic-nolinkdep-script2_C-fixture) + +ROOTTEST_ADD_TEST(single + MACRO single.C+ + FIXTURES_REQUIRED root-aclic-nolinkdep-single_C-fixture + FIXTURES_SETUP root-aclic-nolinkdep-single-fixture) + +ROOTTEST_ADD_TEST(load1 + MACRO script1.C+ + FIXTURES_REQUIRED root-aclic-nolinkdep-script1_C-fixture + FIXTURES_SETUP root-aclic-nolinkdep-load1-fixture) + +ROOTTEST_ADD_TEST(load2 + MACRO script2.C+ + FIXTURES_REQUIRED root-aclic-nolinkdep-script2_C-fixture + FIXTURES_SETUP root-aclic-nolinkdep-load2-fixture) + +ROOTTEST_ADD_TEST(load2b + MACRO script2.C+ + FIXTURES_REQUIRED root-aclic-nolinkdep-load2-fixture + FIXTURES_SETUP root-aclic-nolinkdep-load2b-fixture) + +ROOTTEST_ADD_TEST(load1b + MACRO script1.C+ + OUTREF twoscript.ref + FIXTURES_REQUIRED root-aclic-nolinkdep-load1-fixture + root-aclic-nolinkdep-load2b-fixture + FIXTURES_SETUP root-aclic-nolinkdep-load1b-fixture) + +# after load1b plain tests are finished and now try to rename script2.C to script.C and run it +ROOTTEST_ADD_TEST(build10 + MACRO link.C + PRECMD ${CMAKE_COMMAND} -E remove "single_C.* script_C.*" + COPY_TO_BUILDDIR single.C script.C script2.C + FIXTURES_REQUIRED root-aclic-nolinkdep-load1b-fixture + FIXTURES_SETUP root-aclic-nolinkdep-build10-fixture) + +ROOTTEST_ADD_TEST(load10 + MACRO ${CMAKE_CURRENT_BINARY_DIR}/script.C+ + FIXTURES_REQUIRED root-aclic-nolinkdep-build10-fixture) diff --git a/roottest/root/aclic/nolinkdep/link.C b/roottest/root/aclic/nolinkdep/link.C index 56cb03962a655..3a5a5fb1694f8 100644 --- a/roottest/root/aclic/nolinkdep/link.C +++ b/roottest/root/aclic/nolinkdep/link.C @@ -1,16 +1,5 @@ -void link(int what) { - switch (what) { - case 1: - gROOT->ProcessLine(".L single.C+"); - gROOT->ProcessLine(".L script1.C+"); - gROOT->ProcessLine(".L script2.C+"); - break; - case 10: - gROOT->ProcessLine(".L script.C+"); - gSystem->CopyFile("script2.C","script.C"); - gROOT->ProcessLine(".L script.C+"); - break; - default: - break; - } +void link() { + gROOT->ProcessLine(".L single.C+"); + gSystem->CopyFile("script2.C","script.C"); + gROOT->ProcessLine(".L script.C+"); } \ No newline at end of file diff --git a/roottest/root/aclic/offset/.rootrc b/roottest/root/aclic/offset/.rootrc deleted file mode 100644 index 6ebe75fd4ec5a..0000000000000 --- a/roottest/root/aclic/offset/.rootrc +++ /dev/null @@ -1 +0,0 @@ -Rint.History: .root_hist diff --git a/roottest/root/aclic/offset/CMakeLists.txt b/roottest/root/aclic/offset/CMakeLists.txt index ad0d8ac3717f9..554ea16f9d5f9 100644 --- a/roottest/root/aclic/offset/CMakeLists.txt +++ b/roottest/root/aclic/offset/CMakeLists.txt @@ -1 +1,14 @@ -ROOTTEST_COMPILE_MACRO(TOffset.cxx) +ROOTTEST_COMPILE_MACRO(TOffset.cxx + FIXTURES_SETUP root-aclic-offset-TOffset-fixture) + +if(MSVC) + SET(_ref_name offsetwin.ref) +else() + SET(_ref_name offset.ref) +endif() + +ROOTTEST_ADD_TEST(offset + MACRO runoffset.C + ROOTEXE_OPTS -e "(void)gROOT->ProcessLine(\".L TOffset.cxx+\")" + OUTREF ${_ref_name} + FIXTURES_REQUIRED root-aclic-offset-TOffset-fixture) diff --git a/roottest/root/aclic/offset/TOffset.cpp b/roottest/root/aclic/offset/TOffset.cpp deleted file mode 100644 index 52bc6a4b7d97f..0000000000000 --- a/roottest/root/aclic/offset/TOffset.cpp +++ /dev/null @@ -1,2 +0,0 @@ -#include "TOffset.h" - diff --git a/roottest/root/aclic/offset/TOffset.cxx b/roottest/root/aclic/offset/TOffset.cxx index 45e9429e7da94..353d4a9c95837 100644 --- a/roottest/root/aclic/offset/TOffset.cxx +++ b/roottest/root/aclic/offset/TOffset.cxx @@ -1,10 +1,10 @@ // @(#)root/base:$Id$ // Author: Victor Perev 08/05/02 +#include +#include +#include -#include -#include -#include #include "TOffset.h" #include "TObject.h" #include "TList.h" @@ -22,6 +22,7 @@ #include #include #include + //using namespace std ; using std::vector; using std::list; @@ -31,29 +32,19 @@ using std::multimap; using std::set; using std::multiset; - -// static members init -#ifndef __CINT__ -Int_t TOffset::fgAlign[16] = {0}; - - -Int_t TOffset::fgSize[16] = {0}; -#else -Int_t TOffset::fgAlign[16] ; - - -Int_t TOffset::fgSize[16] ; -#endif -Int_t TOffset::fgWhereVirt = -1; -Int_t TOffset::fgSolBug = 0; +// static members init +Int_t TOffset::fgAlign[16] = {0}; +Int_t TOffset::fgSize[16] = {0}; +Int_t TOffset::fgWhereVirt = -1; +Int_t TOffset::fgSolBug = 0; //______________________________________________________________________________ TOffset::TOffset(TClass *cl,Int_t all) { fOffsetList = new TList; fClass = cl; - fOffset = fTail = fNBase = fSize = fUsed = fLastMult = 0; + fOffset = fTail = fNBase = fSize = fUsed = fLastMult = 0; Init(); Virt(); Adopt(all); @@ -63,7 +54,8 @@ Int_t TOffset::fgSolBug = 0; TOffset::~TOffset() { fOffsetList->Delete(); - delete fOffsetList; fOffsetList=0; + delete fOffsetList; + fOffsetList = nullptr; } //______________________________________________________________________________ const char *TOffset::GetName() const @@ -131,10 +123,10 @@ const char *TOffset::GetName() const {fgSize[kSizeVirt] = sizeof(TestVirt2); TestVirt3 t; fgAlign[kAlignVirt] = (char*)((TestVirt2*)&t)-&t.c1;} {TestVirt4 t; fgWhereVirt = ((char*)&t == &t.c);} - + // Test Solaris bug { sol4Class t; fgSolBug = ((t.i4-(char*)&t) < (int) sizeof(sol3Class));} - + printf(" AlignChar %d size %d\n",fgAlign[kAlignChar] ,fgSize[kSizeChar] ); @@ -179,7 +171,7 @@ const char *TOffset::GetName() const } fVirt = 0; fMult = fgAlign[kAlignChar]; -} +} //______________________________________________________________________________ void TOffset::Adopt(Int_t all) @@ -187,9 +179,9 @@ const char *TOffset::GetName() const //Adopt info from bases TList *lb = fClass->GetListOfBases(); - if (!lb) return; + if (!lb) return; TListIter nextBase(lb); - TClass *bc=0; + TClass *bc=0; TBaseClass *bcl=0; while ((bcl = (TBaseClass*)nextBase())) {//list of base bc = bcl->GetClassPointer(); @@ -211,10 +203,10 @@ const char *TOffset::GetName() const }//end of base offset list fOffset += basOff.GetUsed(); }//end list of base - + return; - -} + +} //______________________________________________________________________________ void TOffset::DoIt() { @@ -232,7 +224,7 @@ const char *TOffset::GetName() const TDataType *dt = dm->GetDataType(); FullTypeName = dm->GetFullTypeName(); tit = fClass->GetName(); tit +=":: type="; - tit += FullTypeName; + tit += FullTypeName; TypeName = dm->GetTypeName(); if (dt) { p|=dt->Property(); @@ -246,10 +238,10 @@ const char *TOffset::GetName() const for (int dim = 0; dim < dm->GetArrayDim(); dim++) { units *= dm->GetMaxIndex(dim);} tit += " units="; tit+=units; - + kind = -1; - if (p&kIsPointer) + if (p&kIsPointer) { kind = kAlignPoint;} else if (p&kIsEnum) @@ -264,10 +256,10 @@ const char *TOffset::GetName() const const char *ctype = strstr(ctypes,ty.Data()); assert (ctype); kind = (ctype-ctypes)/7; - + } else if (dm->IsSTLContainer()) - { + { kind = kAlignVector + dm->IsSTLContainer() - 1; } @@ -283,7 +275,7 @@ const char *TOffset::GetName() const fOffset += size*units; continue; } - + cl = gROOT->GetClass(TypeName.Data()); if (p&kIsClass || cl) { @@ -300,9 +292,6 @@ const char *TOffset::GetName() const fOffsetList->AddLast(tnoff); fOffset += (offClass.GetSize())*units; - - - continue; } @@ -332,7 +321,7 @@ const char *TOffset::GetName() const printf ("TOffset: Class %s",fClass->GetName()); printf (" size = %d virt = %d align = %d",fSize,fVirt,fMult); printf (" Tail = %d \n",fTail); - int num = 0; + int num = 0; TListIter next(fOffsetList); TNamed *tn; while ((tn=(TNamed*)next())) { @@ -354,27 +343,23 @@ Int_t TOffset::GetOffset(const char *name) const class myProf :public TH1F { public: -virtual ~myProf(){} -TArrayD fArr; -ClassDef(myProf, 1) + ~myProf() override {} + TArrayD fArr; + ClassDefOverride(myProf, 1) }; class myPro2 { - public: -TH1F fH1; -TArrayD fArr; + TH1F fH1; + TArrayD fArr; }; class myPro3 :public TH1F { public: - -virtual ~myPro3(){} -char fArr; -ClassDef(myPro3, 1) + ~myPro3() override{} + char fArr; + ClassDefOverride(myPro3, 1) }; - - //Tail class fstClass {public:virtual ~fstClass(){};char c0;double d[73]; char c1;}; class tailClass {public:fstClass f; char c2;}; @@ -392,10 +377,8 @@ class fst3Class : public fst1Class,fst2Class {public:virtual ~fst3Class(){};}; class tailPClass : public fst3Class {public: char c2;}; - - //______________________________________________________________________________ -void TOffset::Test() +void TOffset::Test() { myProf my; @@ -410,28 +393,35 @@ void TOffset::Test() printf("size TH1D,TArrayD,my=%zu,%zu,%zu offset=%td\n", sizeof(TH1F),sizeof(TArrayD),sizeof(my3),(char*)&my3.fArr-(char*)&my3); -//Tail -{ tailClass t; printf("Tail1: first size=%zu c012offset=%td %td %td,TailSize=%zu\n" - ,sizeof(fstClass),&t.f.c0-(char*)&t, &t.f.c1-(char*)&t,&t.c2-(char*)&t,sizeof(t)); -} -//Tail2 -{ tail2Class t; printf("Tail2: first size=%zu c0121offset=%td %td %td,TailSize=%zu\n" - ,sizeof(fstClass),&t.c0-(char*)&t, &t.c1-(char*)&t, &t.c2-(char*)&t, sizeof(t)); -} -//Tail3 -{ tail3Class t; printf("Tail3: first size=%zu c012offset=%td %td %td,TailSize=%zu\n" - ,sizeof(fstClass),&t.c0-(char*)&t, &t.c1-(char*)&t, (char*)&t.c2-(char*)&t, sizeof(t)); -} -//Tail4 -{ tail2Class t; printf("Tail2: first size=%zu c0121offset=%td %td %td,TailSize=%zu\n" - ,sizeof(fstClass),&t.c0-(char*)&t, &t.c1-(char*)&t, &t.c2-(char*)&t, sizeof(t)); -} -//TailP -{ tailPClass t; printf("TailP: first size=%zu offset=%td TailSize=%zu\n" - ,sizeof(fst3Class),(char*)&t.c2-(char*)&t, sizeof(t)); -} - + //Tail + { + tailClass t; + printf("Tail1: first size=%zu c012offset=%td %td %td,TailSize=%zu\n" + ,sizeof(fstClass),&t.f.c0-(char*)&t, &t.f.c1-(char*)&t,&t.c2-(char*)&t,sizeof(t)); + } + //Tail2 + { + tail2Class t; + printf("Tail2: first size=%zu c0121offset=%td %td %td,TailSize=%zu\n" + ,sizeof(fstClass),&t.c0-(char*)&t, &t.c1-(char*)&t, &t.c2-(char*)&t, sizeof(t)); + } + //Tail3 + { + tail3Class t; + printf("Tail3: first size=%zu c012offset=%td %td %td,TailSize=%zu\n" + ,sizeof(fstClass),&t.c0-(char*)&t, &t.c1-(char*)&t, (char*)&t.c2-(char*)&t, sizeof(t)); + } + //Tail4 + { + tail2Class t; + printf("Tail2: first size=%zu c0121offset=%td %td %td,TailSize=%zu\n" + ,sizeof(fstClass),&t.c0-(char*)&t, &t.c1-(char*)&t, &t.c2-(char*)&t, sizeof(t)); + } + //TailP + { + tailPClass t; + printf("TailP: first size=%zu offset=%td TailSize=%zu\n" + ,sizeof(fst3Class),(char*)&t.c2-(char*)&t, sizeof(t)); + } } - - diff --git a/roottest/root/aclic/offset/TOffset.h b/roottest/root/aclic/offset/TOffset.h index 3578bc0f3d073..2d4f85a3f62ed 100644 --- a/roottest/root/aclic/offset/TOffset.h +++ b/roottest/root/aclic/offset/TOffset.h @@ -1,25 +1,15 @@ // @(#)root/base:$Id$ // Author: Victor Perev 08/05/02 -#ifdef __CINT__ -#pragma link off all globals; -#pragma link off all classes; -#pragma link off all functions; -//#pragma link C++ class TOffset; -#endif - #ifndef ROOT_TOffset #define ROOT_TOffset - #include "Rtypes.h" class TList; class TObject; class TClass; - - class TOffset { public: @@ -35,8 +25,8 @@ class TOffset { void Print(const char* opt="") const; Int_t GetOffset(const char *name) const; -static void Test(); -static Int_t Aligne(Int_t off,Int_t mult) + static void Test(); + static Int_t Aligne(Int_t off,Int_t mult) {Int_t r = off%mult; if (r) off += mult - r; return off;} private: @@ -47,49 +37,49 @@ static Int_t Aligne(Int_t off,Int_t mult) // static members - + static Int_t fgAlign[16]; static Int_t fgSize [16]; static Int_t fgWhereVirt; static Int_t fgSolBug; enum EAlign { - kAlignChar, - kAlignShort, - kAlignInt, - kAlignLong, - kAlignPoint, - kAlignFloat, - kAlignDouble, - kAlignBool, - kAlignVirt, - kAlignVector, - kAlignList, - kAlignDeque, - kAlignMap, - kAlignMultiMap, - kAlignSet, - kAlignMultiSet + kAlignChar, + kAlignShort, + kAlignInt, + kAlignLong, + kAlignPoint, + kAlignFloat, + kAlignDouble, + kAlignBool, + kAlignVirt, + kAlignVector, + kAlignList, + kAlignDeque, + kAlignMap, + kAlignMultiMap, + kAlignSet, + kAlignMultiSet }; - + enum ESize { - kSizeChar, - kSizeShort, - kSizeInt, - kSizeLong, - kSizePoint, - kSizeFloat, - kSizeDouble, - kSizeBool, - kSizeVirt, - kSizeVector, - kSizeList, - kSizeDeque, - kSizeMap, - kSizeMultiMap, - kSizeSet, - kSizeMultiSet + kSizeChar, + kSizeShort, + kSizeInt, + kSizeLong, + kSizePoint, + kSizeFloat, + kSizeDouble, + kSizeBool, + kSizeVirt, + kSizeVector, + kSizeList, + kSizeDeque, + kSizeMap, + kSizeMultiMap, + kSizeSet, + kSizeMultiSet }; @@ -106,7 +96,9 @@ static Int_t Aligne(Int_t off,Int_t mult) Int_t fNBase; TList *fOffsetList; }; -#ifdef __CINT__ + +#ifdef __ROOTCLING__ #pragma link C++ class TOffset+; #endif + #endif diff --git a/roottest/root/aclic/offset/offset.ref b/roottest/root/aclic/offset/offset.ref new file mode 100644 index 0000000000000..eb0b151932882 --- /dev/null +++ b/roottest/root/aclic/offset/offset.ref @@ -0,0 +1,10 @@ + +Processing runoffset.C... +size TH1D,TArrayD,my=1000,24,1024 offset=1000 +size TH1D,TArrayD,my=1000,24,1024 offset=1000 +size TH1D,TArrayD,my=1000,24,1008 offset=1000 +Tail1: first size=608 c012offset=8 600 608,TailSize=616 +Tail2: first size=608 c0121offset=8 600 601,TailSize=608 +Tail3: first size=608 c012offset=8 600 608,TailSize=624 +Tail2: first size=608 c0121offset=8 600 601,TailSize=608 +TailP: first size=96 offset=96 TailSize=104 diff --git a/roottest/root/aclic/offset/offsetwin.ref b/roottest/root/aclic/offset/offsetwin.ref new file mode 100644 index 0000000000000..15ce457a2ee94 --- /dev/null +++ b/roottest/root/aclic/offset/offsetwin.ref @@ -0,0 +1,10 @@ + +Processing runoffset.C... +size TH1D,TArrayD,my=1024,24,1048 offset=1024 +size TH1D,TArrayD,my=1024,24,1048 offset=1024 +size TH1D,TArrayD,my=1024,24,1032 offset=1024 +Tail1: first size=608 c012offset=8 600 608,TailSize=616 +Tail2: first size=608 c0121offset=8 600 608,TailSize=616 +Tail3: first size=608 c012offset=8 600 608,TailSize=624 +Tail2: first size=608 c0121offset=8 600 608,TailSize=616 +TailP: first size=96 offset=96 TailSize=104 diff --git a/roottest/root/aclic/offset/offsetwin.ref32 b/roottest/root/aclic/offset/offsetwin.ref32 new file mode 100644 index 0000000000000..86c5456e3f40a --- /dev/null +++ b/roottest/root/aclic/offset/offsetwin.ref32 @@ -0,0 +1,10 @@ + +Processing runoffset.C... +size TH1D,TArrayD,my=728,12,744 offset=728 +size TH1D,TArrayD,my=728,12,744 offset=728 +size TH1D,TArrayD,my=728,12,736 offset=728 +Tail1: first size=608 c012offset=8 600 608,TailSize=616 +Tail2: first size=608 c0121offset=8 600 608,TailSize=616 +Tail3: first size=608 c012offset=8 600 608,TailSize=616 +Tail2: first size=608 c0121offset=8 600 608,TailSize=616 +TailP: first size=96 offset=96 TailSize=104 diff --git a/roottest/root/aclic/offset/runoffset.C b/roottest/root/aclic/offset/runoffset.C new file mode 100644 index 0000000000000..1b4402f75b280 --- /dev/null +++ b/roottest/root/aclic/offset/runoffset.C @@ -0,0 +1,4 @@ +void runoffset() +{ + TOffset::Test(); +} diff --git a/roottest/root/aclic/with space/.rootrc b/roottest/root/aclic/with space/.rootrc deleted file mode 100644 index 6ebe75fd4ec5a..0000000000000 --- a/roottest/root/aclic/with space/.rootrc +++ /dev/null @@ -1 +0,0 @@ -Rint.History: .root_hist diff --git a/roottest/root/aclic/with space/CMakeLists.txt b/roottest/root/aclic/with space/CMakeLists.txt deleted file mode 100644 index e69de29bb2d1d..0000000000000