--- test/stress.cxx.ORIG Tue Jun 20 15:40:38 2000 +++ test/stress.cxx Tue Jun 27 11:35:19 2000 @@ -781,12 +781,22 @@ // This test dynamic linking when running in interpreted mode if (!TClassTable::GetDict("Event")) { Bool_t UNIX = strcmp(gSystem->GetName(), "Unix") == 0; +#if 0 Int_t st1 = gSystem->Load("$(ROOTSYS)/test/libEvent"); +#else + Int_t st1 = gSystem->Load("libEvent"); +#endif if (st1 == -1) { printf("===>stress8 will try to build the libEvent library\n"); +#if 0 if (UNIX) gSystem->Exec("(cd $ROOTSYS/test; make Event)"); else gSystem->Exec("(cd %ROOTSYS%\\test && nmake libEvent.dll)"); st1 = gSystem->Load("$(ROOTSYS)/test/libEvent"); +#else + if (UNIX) gSystem->Exec("(make Event)"); + else gSystem->Exec("(nmake libEvent.dll)"); + st1 = gSystem->Load("libEvent"); +#endif } }