Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
b0cedd8a
Commit
b0cedd8a
authored
Mar 29, 2011
by
Mark Friedrichs
Browse files
Output changed to 'Done' if test passes to be consistent w/ other OpenMM unit tests
parent
4614fe27
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
18 additions
and
12 deletions
+18
-12
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaHarmonicAngleForce.cpp
...reference/tests/TestReferenceAmoebaHarmonicAngleForce.cpp
+2
-1
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaHarmonicBondForce.cpp
.../reference/tests/TestReferenceAmoebaHarmonicBondForce.cpp
+2
-1
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaHarmonicInPlaneAngleForce.cpp
...ce/tests/TestReferenceAmoebaHarmonicInPlaneAngleForce.cpp
+2
-1
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaOutOfPlaneBendForce.cpp
...eference/tests/TestReferenceAmoebaOutOfPlaneBendForce.cpp
+2
-1
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaPiTorsionForce.cpp
...rms/reference/tests/TestReferenceAmoebaPiTorsionForce.cpp
+2
-1
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaStretchBendForce.cpp
...s/reference/tests/TestReferenceAmoebaStretchBendForce.cpp
+2
-4
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaTorsionForce.cpp
...forms/reference/tests/TestReferenceAmoebaTorsionForce.cpp
+2
-1
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaUreyBradleyForce.cpp
...s/reference/tests/TestReferenceAmoebaUreyBradleyForce.cpp
+2
-1
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaVdwForce.cpp
...platforms/reference/tests/TestReferenceAmoebaVdwForce.cpp
+2
-1
No files found.
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaHarmonicAngleForce.cpp
View file @
b0cedd8a
...
@@ -318,6 +318,7 @@ int main( int numberOfArguments, char* argv[] ) {
...
@@ -318,6 +318,7 @@ int main( int numberOfArguments, char* argv[] ) {
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
return
1
;
return
1
;
}
}
std
::
cout
<<
"PASS - Test succeeded."
<<
std
::
endl
;
//std::cout << "PASS - Test succeeded." << std::endl;
std
::
cout
<<
"Done"
<<
std
::
endl
;
return
0
;
return
0
;
}
}
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaHarmonicBondForce.cpp
View file @
b0cedd8a
...
@@ -222,6 +222,7 @@ int main( int numberOfArguments, char* argv[] ) {
...
@@ -222,6 +222,7 @@ int main( int numberOfArguments, char* argv[] ) {
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
return
1
;
return
1
;
}
}
std
::
cout
<<
"PASS - Test succeeded."
<<
std
::
endl
;
//std::cout << "PASS - Test succeeded." << std::endl;
std
::
cout
<<
"Done"
<<
std
::
endl
;
return
0
;
return
0
;
}
}
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaHarmonicInPlaneAngleForce.cpp
View file @
b0cedd8a
...
@@ -394,6 +394,7 @@ int main( int numberOfArguments, char* argv[] ) {
...
@@ -394,6 +394,7 @@ int main( int numberOfArguments, char* argv[] ) {
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
return
1
;
return
1
;
}
}
std
::
cout
<<
"PASS - Test succeeded."
<<
std
::
endl
;
//std::cout << "PASS - Test succeeded." << std::endl;
std
::
cout
<<
"Done"
<<
std
::
endl
;
return
0
;
return
0
;
}
}
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaOutOfPlaneBendForce.cpp
View file @
b0cedd8a
...
@@ -529,6 +529,7 @@ int main( int numberOfArguments, char* argv[] ) {
...
@@ -529,6 +529,7 @@ int main( int numberOfArguments, char* argv[] ) {
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
return
1
;
return
1
;
}
}
std
::
cout
<<
"PASS - Test succeeded."
<<
std
::
endl
;
//std::cout << "PASS - Test succeeded." << std::endl;
std
::
cout
<<
"Done"
<<
std
::
endl
;
return
0
;
return
0
;
}
}
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaPiTorsionForce.cpp
View file @
b0cedd8a
...
@@ -321,6 +321,7 @@ int main( int numberOfArguments, char* argv[] ) {
...
@@ -321,6 +321,7 @@ int main( int numberOfArguments, char* argv[] ) {
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
return
1
;
return
1
;
}
}
std
::
cout
<<
"PASS - Test succeeded."
<<
std
::
endl
;
//std::cout << "PASS - Test succeeded." << std::endl;
std
::
cout
<<
"Done"
<<
std
::
endl
;
return
0
;
return
0
;
}
}
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaStretchBendForce.cpp
View file @
b0cedd8a
...
@@ -307,9 +307,7 @@ int main( int numberOfArguments, char* argv[] ) {
...
@@ -307,9 +307,7 @@ int main( int numberOfArguments, char* argv[] ) {
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
return
1
;
return
1
;
}
}
std
::
cout
<<
"PASS - Test succeeded."
<<
std
::
endl
;
//std::cout << "PASS - Test succeeded." << std::endl;
std
::
cout
<<
"Done"
<<
std
::
endl
;
return
0
;
return
0
;
}
}
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaTorsionForce.cpp
View file @
b0cedd8a
...
@@ -354,6 +354,7 @@ int main( int numberOfArguments, char* argv[] ) {
...
@@ -354,6 +354,7 @@ int main( int numberOfArguments, char* argv[] ) {
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
return
1
;
return
1
;
}
}
std
::
cout
<<
"PASS - Test succeeded."
<<
std
::
endl
;
//std::cout << "PASS - Test succeeded." << std::endl;
std
::
cout
<<
"Done"
<<
std
::
endl
;
return
0
;
return
0
;
}
}
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaUreyBradleyForce.cpp
View file @
b0cedd8a
...
@@ -226,6 +226,7 @@ int main( int numberOfArguments, char* argv[] ) {
...
@@ -226,6 +226,7 @@ int main( int numberOfArguments, char* argv[] ) {
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
return
1
;
return
1
;
}
}
std
::
cout
<<
"PASS - Test succeeded."
<<
std
::
endl
;
//std::cout << "PASS - Test succeeded." << std::endl;
std
::
cout
<<
"Done"
<<
std
::
endl
;
return
0
;
return
0
;
}
}
plugins/amoeba/platforms/reference/tests/TestReferenceAmoebaVdwForce.cpp
View file @
b0cedd8a
...
@@ -173,6 +173,7 @@ int main( int numberOfArguments, char* argv[] ) {
...
@@ -173,6 +173,7 @@ int main( int numberOfArguments, char* argv[] ) {
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
std
::
cout
<<
"FAIL - ERROR. Test failed."
<<
std
::
endl
;
return
1
;
return
1
;
}
}
std
::
cout
<<
"PASS - Test succeeded."
<<
std
::
endl
;
//std::cout << "PASS - Test succeeded." << std::endl;
std
::
cout
<<
"Done"
<<
std
::
endl
;
return
0
;
return
0
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment