Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(723)

Unified Diff: runtime/vm/atomic_test.cc

Issue 1561423002: Fix build break for the simulator versions. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/atomic_test.cc
diff --git a/runtime/vm/atomic_test.cc b/runtime/vm/atomic_test.cc
index e7e366641f92332e5fdba0e282614a75af891ece..2e327a52235817c8b444046a8b9a1625b3a88b80 100644
--- a/runtime/vm/atomic_test.cc
+++ b/runtime/vm/atomic_test.cc
@@ -32,7 +32,7 @@ UNIT_TEST_CASE(LoadRelaxed) {
}
-UNIT_TEST_CASE(CompareAndSwapWord) {
+TEST_CASE(CompareAndSwapWord) {
uword old_value = 42;
uword new_value = 100;
uword result = AtomicOperations::CompareAndSwapWord(
@@ -41,7 +41,7 @@ UNIT_TEST_CASE(CompareAndSwapWord) {
}
-UNIT_TEST_CASE(CompareAndSwapUint32) {
+TEST_CASE(CompareAndSwapUint32) {
uint32_t old_value = 42;
uint32_t new_value = 100;
uint32_t result = AtomicOperations::CompareAndSwapUint32(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698