summaryrefslogtreecommitdiff
path: root/cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/float_range_watch/float_range_small.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/float_range_watch/float_range_small.cpp')
-rw-r--r--cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/float_range_watch/float_range_small.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/float_range_watch/float_range_small.cpp b/cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/float_range_watch/float_range_small.cpp
new file mode 100644
index 000000000000..6a844e7da2cd
--- /dev/null
+++ b/cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/float_range_watch/float_range_small.cpp
@@ -0,0 +1,16 @@
+// Purpose:
+// Check that \DexExpectWatchValue float_range=0.5 considers a range
+// difference of 0.49999 to be an expected watch value.
+//
+// UNSUPPORTED: system-darwin
+//
+// RUN: %dexter_regression_test -- %s | FileCheck %s
+// CHECK: float_range_small.cpp:
+
+int main() {
+ float a = 1.0f;
+ a = a - 0.49999f;
+ return a; //DexLabel('check')
+}
+
+// DexExpectWatchValue('a', '1.0', on_line=ref('check'), float_range=0.5)