Split tests

This commit is contained in:
Uy Ha 2021-04-10 19:21:36 +02:00
parent f79a9ebe9e
commit 9fefdcb89d
2 changed files with 35 additions and 35 deletions

View file

@ -44,38 +44,3 @@ message(
)
)
====================================
Command invocation with one argument
====================================
message(STATUS)
---
(source_file
(command_invocation
(identifier)
(arguments
(argument (unquoted_argument))
)
)
)
=====================================
Command invocation with two arguments
=====================================
message(STATUS Hello)
---
(source_file
(command_invocation
(identifier)
(arguments
(argument (unquoted_argument))
(seperation (space))
(argument (unquoted_argument))
)
)
)

View file

@ -0,0 +1,35 @@
====================================
Command invocation with one argument
====================================
message(STATUS)
---
(source_file
(command_invocation
(identifier)
(arguments
(argument (unquoted_argument))
)
)
)
=====================================
Command invocation with two arguments
=====================================
message(STATUS Hello)
---
(source_file
(command_invocation
(identifier)
(arguments
(argument (unquoted_argument))
(seperation (space))
(argument (unquoted_argument))
)
)
)