aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/linear/call-direct.c
diff options
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2018-03-06 23:48:21 +0100
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2018-03-11 03:08:22 +0100
commit6e42c573ee706720a91a19ab6461aff63fc6999b (patch)
tree8d2a3ba0a2a2320f852f9044843f7fc59b6631c5 /validation/linear/call-direct.c
parent7f9145f334c94fa29f4911b5a9d6d83538181f4f (diff)
downloadsparse-dev-6e42c573ee706720a91a19ab6461aff63fc6999b.tar.gz
testsuite: fix problem with double-escaping in patterns
Since the patterns in the testcases are evaluated in the shell script, the backslash used to escape characters special to the pattern need itself to be escaped. Theer is a few cases where it wasn't done so, partly because 'format -l' gave a single escape in its template. Fix all occurences neededing this double-escape as well as the 'format -l' template. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
Diffstat (limited to 'validation/linear/call-direct.c')
-rw-r--r--validation/linear/call-direct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/validation/linear/call-direct.c b/validation/linear/call-direct.c
index 52f86306..c3761cc5 100644
--- a/validation/linear/call-direct.c
+++ b/validation/linear/call-direct.c
@@ -13,5 +13,5 @@ int f3(void) { return (***fun)(); } // C99,C11 6.5.3.2p4
*
* check-output-ignore
* check-output-excludes: load
- * check-output-pattern(5): call\..* fun
+ * check-output-pattern(5): call\\..* fun
*/