Skip to content

Commit 62c42a6

Browse files
committed
[test] rename CINT to CLING and MAKECINT to ROOTCLING
[test] Try removing ifdef guards to see if it solves the test failure [test] attempt run interpreted
1 parent 86463c6 commit 62c42a6

18 files changed

+55
-77
lines changed

test/TestVectors.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// @(#)root/test:$Id$
22
// Author: Peter Malzacher 19/06/99
33

4-
#ifndef __CINT__
4+
#ifndef __CLING__
55
#include <Riostream.h>
66
#include <TMath.h>
77
#include <TVector3.h>

test/dt_MakeRef.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include "TH2.h"
88
#include "TSystem.h"
99

10-
#ifndef __CINT__
10+
#ifndef __CLING__
1111
#include "Event.h"
1212
#endif
1313

test/hsimple.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
int hsimple();
1818

19-
#ifndef __CINT__
19+
#ifndef __CLING__
2020
#include "TFile.h"
2121
#include "TH1.h"
2222
#include "TH2.h"

test/minexam.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
void fcnk0(int &npar, double *gin, double &f, double *x, int iflag);
2424
int minexam();
2525

26-
#ifndef __CINT__
26+
#ifndef __CLING__
2727
#include "TVirtualFitter.h"
2828
#include "TMath.h"
2929
#include "TStopwatch.h"

test/stress.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
//******************************************************************
6969
//
7070
//_____________________________batch only_____________________
71-
#ifndef __CINT__
71+
#ifndef __CLING__
7272

7373
#include <cstdlib>
7474
#include <TROOT.h>
@@ -221,7 +221,7 @@ void stress(Int_t nevent, Int_t style = 1,
221221
Float_t mbtot1 = mbin1+mbout1;
222222
printf("stress : Compr I/O =%7.1f Mbytes, I =%7.1f, O =%6.1f\n",mbtot1,mbin1,mbout1);
223223
gBenchmark->Print("stress");
224-
#ifndef __CINT__
224+
#ifndef __CLING__
225225
Float_t cp_brun_30 = 12.73;
226226
Float_t cp_brun_1000 = 61.88;
227227
#else

test/stressEntryList.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ Int_t stressEntryList(Int_t nentries, Int_t nfiles)
672672
return retval;
673673
}
674674
//_____________________________batch only_____________________
675-
#ifndef __CINT__
675+
#ifndef __CLING__
676676

677677
int main(int argc, char *argv[])
678678
{

test/stressFit.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ Int_t stressFit(const char *type, const char *algo, Int_t N)
659659

660660
printf("******************************************************************\n");
661661
gBenchmark->Print("stressFit");
662-
#ifdef __CINT__
662+
#ifdef __CLING__
663663
Double_t reftime = 86.34; //macbrun interpreted
664664
#else
665665
Double_t reftime = 12.07; //macbrun compiled
@@ -675,7 +675,7 @@ Int_t stressFit(const char *type, const char *algo, Int_t N)
675675
}
676676

677677
//_____________________________batch only_____________________
678-
#ifndef __CINT__
678+
#ifndef __CLING__
679679

680680
int main(int argc,const char *argv[])
681681
{

test/stressGeometry.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
Double_t tpstot = 0;
5858
Double_t tpsref = 112.1; //time including the generation of the ref files
5959
Bool_t testfailed = kFALSE;
60-
#ifndef __CINT__
60+
#ifndef __CLING__
6161
void stressGeometry(const char*, Bool_t, Bool_t);
6262

6363
int main(int argc, char **argv)

test/stressIOPlugins.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
// : filename with a url query in Add...................... OK
5454
// ****************************************************************************
5555
//_____________________________batch only_____________________
56-
#ifndef __CINT__
56+
#ifndef __CLING__
5757

5858
#include <cstdlib>
5959
#include <snprintf.h>

test/stressInterpreter.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ bool stressInterpreter(Int_t ntimes = 10, const char* runTests = 0, const char*
440440
return !stress.run(ntimes, runTests);
441441
}
442442

443-
#if !defined(__CINT__) && !defined(__CLING__)
443+
#if !defined(__CLING__) && !defined(__CLING__)
444444
// If compiled: interpret! (by default)
445445

446446
int main(int argc, char **argv)

0 commit comments

Comments
 (0)