summaryrefslogtreecommitdiff
path: root/cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/float_range_watch/float_range_no_arg.cpp
blob: b9e1d229f198c047709bf941e051f0ff4e288246 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Purpose:
//      Check that omitted float_range from \DexExpectWatchValue turns off
//      the floating point range evalution and defaults back to
//      pre-float evalution.
//
// UNSUPPORTED: system-darwin
//
// RUN: %dexter_regression_test -- %s | FileCheck %s
// CHECK: float_range_no_arg.cpp:

int main() {
  float a = 1.0f;
  return a;  //DexLabel('check')
}

// DexExpectWatchValue('a', '1.00000', on_line=ref('check'))