diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-05-03 20:58:56 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-05-03 20:58:56 +0000 |
commit | 94f356863331ed204faccefdc3d47a581e6edc6e (patch) | |
tree | ce8d1b300b561cba777cb8c63e56e973eda5a318 | |
parent | e078c9507c3abb4d9bb2265c366b26557880a3e3 (diff) | |
download | bcm5719-llvm-94f356863331ed204faccefdc3d47a581e6edc6e.tar.gz bcm5719-llvm-94f356863331ed204faccefdc3d47a581e6edc6e.zip |
[test] Make check more strict
Before this change the test would always pass if the path to the test
contained the number 11 in it. Thanks to Ted for pointing this out.
llvm-svn: 359930
-rw-r--r-- | lldb/lit/Commands/command-source.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/lit/Commands/command-source.test b/lldb/lit/Commands/command-source.test index f8637dc0d5f..d8218850c32 100644 --- a/lldb/lit/Commands/command-source.test +++ b/lldb/lit/Commands/command-source.test @@ -8,5 +8,5 @@ bogus p 10+1 -# CONTINUE: 11 -# STOP-NOT: 11 +# CONTINUE: $0 = 11 +# STOP-NOT: $0 = 11 |