From 5007870b52aa549971824959a55ad3bb886f09e0 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 3 Sep 2018 16:37:32 +0200 Subject: Rename .test/test{} to .testscript/testscript{} --- unit-tests/cc/lexer/comment.test | 88 ---------------------------------------- 1 file changed, 88 deletions(-) delete mode 100644 unit-tests/cc/lexer/comment.test (limited to 'unit-tests/cc/lexer/comment.test') diff --git a/unit-tests/cc/lexer/comment.test b/unit-tests/cc/lexer/comment.test deleted file mode 100644 index 2b5d81e..0000000 --- a/unit-tests/cc/lexer/comment.test +++ /dev/null @@ -1,88 +0,0 @@ -# file : unit-tests/cc/lexer/comment.test -# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd -# license : MIT; see accompanying LICENSE file - -# Test C and C++ comments. -# - -: c-comment -: -$* <"';'" -// /* -; -// */ -EOI - -: c-unterminated -: -$* <>EOE != 0 -/* -comment -EOI -stdin:1:2: error: unterminated comment -EOE - -: cxx-unterminated -: -$* <<:EOI -// comment -EOI - -: in-char-literal -: -$* <>EOO -'//' -'/*'*/ -EOI - - - - -EOO - -: in-string-literal -: -$* <>EOO -"//foo" -"/*"*/ -EOI - - - - -EOO - -: in-raw-string-literal -: -$* <>EOO -R"X( -// foo -/* bar -)X"*/ -EOI - - - -EOO -- cgit v1.1