Skip to content

Commit fa3508a

Browse files
authored
Merge pull request #47229 from Dr15Jones/fixNoParentDict
Fix NoParentDictionary test
2 parents bf511db + dc17250 commit fa3508a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

IOPool/Input/test/testNoParentDictionary.sh

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,27 @@ fi
2020
if [ -d ${CMSSW_BASE}/src/DataFormats/Provenance ]; then
2121
cp -Lr ${CMSSW_BASE}/src/DataFormats/Provenance DataFormats/
2222
fi
23+
#DataFormats/Common and DataFormat/Provenance depend on Utilities
24+
if [ -d ${CMSSW_BASE}/src/FWCore/Utilities ]; then
25+
mkdir -p FWCore
26+
cp -Lr ${CMSSW_BASE}/src/FWCore/Utilities FWCore/
27+
fi
28+
#DataFormats/Common depends on MessageLogger
29+
if [ -d ${CMSSW_BASE}/src/FWCore/MessageLogger ]; then
30+
mkdir -p FWCore
31+
cp -Lr ${CMSSW_BASE}/src/FWCore/MessageLogger FWCore/
32+
fi
33+
#DataFormats/Provenance depends on Reflection
34+
if [ -d ${CMSSW_BASE}/src/FWCore/Reflection ]; then
35+
mkdir -p FWCore
36+
cp -Lr ${CMSSW_BASE}/src/FWCore/Reflection FWCore/
37+
fi
38+
39+
#DataFormats/TestObjects depends on FWCore/SOA
40+
if [ -d ${CMSSW_BASE}/src/FWCore/SOA ]; then
41+
mkdir -p FWCore
42+
cp -Lr ${CMSSW_BASE}/src/FWCore/SOA FWCore/
43+
fi
2344

2445
# Copy DataFormats/TestObjects code to be able to edit it to make ROOT header parsing to fail
2546
for DIR in ${CMSSW_BASE} ${CMSSW_RELEASE_BASE} ${CMSSW_FULL_RELEASE_BASE} ; do

0 commit comments

Comments
 (0)