[root]/CCA/Components/ProblemSpecification
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 8 (100.0%) | 18 (100.0%) | 2.2 |
dav | 5 (62.5%) | 11 (61.1%) | 2.2 |
jthornoc | 1 (12.5%) | 5 (27.8%) | 5.0 |
tsaad | 1 (12.5%) | 1 (5.6%) | 1.0 |
harman | 1 (12.5%) | 1 (5.6%) | 1.0 |
This commit will (hopefully) fix the Mac OSX regression tester.
M Makefile.in
- Don't run the verify_zlib if it is a static build.
M CCA/Components/ProblemSpecification/sub.mk
M Core/ProblemSpec/sub.mk
- On some Mac installs, the MPI library brings in a library load path
that has alternative system libraries in it. The most usual case is
with libz.dylib. If we don't add the MPI_LIBRARY line to this link
line, then these libs will link vs the system (usually /usr/lib/libz.dylib)
and thus we will have two different compression libraries linked
into the same executable... which will eventually cause a bad UDA to
be created.
M CCA/Components/ProblemSpecification/ProblemSpecReader.cc
- Add a better error message.
M CCA/Components/Regridder/TiledRegridder.cc
- Alphabetize the includes.
7 lines of code changed in 4 files:
M CCA/Components/ProblemSpecification/ProblemSpecReader.cc
Removed the comment that said "// FIXME fix error message..." that was
left in the code to remind the programmer to fix "the WORST error
message in the history of programming." :)
Also replaced the exact same "worst error message..." in another
section of the file to give the better error message.
4 lines of code changed in 1 file:
This is a commit: Fix the WORST error message in the history of programming.
1 lines of code changed in 1 file:
Fix for subtle logic error that was causing sus not to exit correctly
when an error occurred during UPS validation. The re-'throw'-ing of the
exception needs to occur on all processors, not just proc 0 where the
output is displayed.
Also, fixed catching of the case when a UPS_SPEC file is not found.
5 lines of code changed in 1 file:
Give the user a hint at what might be wrong for strings.
1 lines of code changed in 1 file: