blob: 1aec2f8f3b64957745b5fca866008c69c49cd900 [file] [log] [blame]
# Purpose:
# Check that \DexDeclareFile's file declaration can reference source files
# in a precompiled binary.
#
# UNSUPPORTED: system-darwin
#
# RUN: %clang %S/test.cpp -O0 -g -o %t
# RUN: %dexter_regression_test --binary %t %s | FileCheck %s
# CHECK: commands.dex
#
# test.cpp
# 1. int main() {
# 2. int result = 0;
# 3. return result;
# 4. }
DexDeclareFile('test.cpp')
DexExpectWatchValue('result', 0, on_line=3)