summaryrefslogtreecommitdiff
path: root/cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/float_range_zero_nonmatch.cpp
blob: e7e04c9f98e63d148d6c413cc7258aaf8cd2fd45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Purpose:
//      Check that \DexExpectWatchValue float_range=0.0 matches only exact
//      values.
//
// UNSUPPORTED: system-darwin
//
// RUN: not %dexter_regression_test -- %s | FileCheck %s
// CHECK: float_range_zero_nonmatch.cpp:

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

// DexExpectWatchValue('a', '1.0000001', on_line=ref('check'), float_range=0.0)