Refactor golden files to follow xyz_log_ and xyz_src_ naming convention

This commit is contained in:
2026-04-25 20:05:16 +02:00
parent a6bdadac0c
commit e910c01348
16 changed files with 52 additions and 10 deletions
+4
View File
@@ -0,0 +1,4 @@
--- test.c ---
1| module my_module; import ;
^
expected module name to import
+1
View File
@@ -0,0 +1 @@
import ;
+4
View File
@@ -0,0 +1,4 @@
--- test.c ---
1| import other_module;
^^^^^^
expected 'module' keyword
+1
View File
@@ -0,0 +1 @@
import other_module;
+4
View File
@@ -0,0 +1,4 @@
--- test.c ---
1| int main() []
^^
unexpected token
+1
View File
@@ -0,0 +1 @@
int main() []
+4
View File
@@ -0,0 +1,4 @@
--- test.c ---
1| int main() []
^^
unexpected token 'x'
+1
View File
@@ -0,0 +1 @@
int main() []
@@ -0,0 +1,4 @@
--- test.c ---
1| module my_module; import other_module
^
expected ';' after import
+1
View File
@@ -0,0 +1 @@
module my_module; import other_module
@@ -0,0 +1,4 @@
--- test.c ---
1| module my_module
^
expected ';' after module name
+1
View File
@@ -0,0 +1 @@
module my_module
+4
View File
@@ -0,0 +1,4 @@
--- test.c ---
1| %
^
unexpected token '%'
+1
View File
@@ -0,0 +1 @@
%