about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--041name.cc8
-rw-r--r--072scenario_screen.cc10
2 files changed, 10 insertions, 8 deletions
diff --git a/041name.cc b/041name.cc
index 1aa46592..eccc7b27 100644
--- a/041name.cc
+++ b/041name.cc
@@ -190,14 +190,6 @@ recipe main [
 -warn: mixing variable names and numeric addresses in main
 $warn: 0
 
-:(scenario convert_names_does_not_warn_when_mixing_special_names_and_numeric_locations)
-% Hide_warnings = true;
-recipe main [
-  screen:number <- copy 1:number
-]
--warn: mixing variable names and numeric addresses in main
-$warn: 0
-
 :(scenario convert_names_warns_on_reusing_name_with_different_type)
 % Hide_warnings = true;
 recipe main [
diff --git a/072scenario_screen.cc b/072scenario_screen.cc
index 6d6f18cb..f388ea11 100644
--- a/072scenario_screen.cc
+++ b/072scenario_screen.cc
@@ -107,6 +107,16 @@ scenario screen-in-scenario-color [
 :(before "End is_special_name Cases")
 if (s == "screen") return true;
 
+:(scenarios run)
+:(scenario convert_names_does_not_warn_when_mixing_special_names_and_numeric_locations)
+% Hide_warnings = true;
+recipe main [
+  screen:number <- copy 1:number
+]
+-warn: mixing variable names and numeric addresses in main
+$warn: 0
+:(scenarios run_mu_scenario)
+
 :(before "End Globals")
 // Scenarios may not define default-space, so they should fit within the
 // initial area of memory reserved for tests. We'll put the predefined
class='oid'>a36bfd7b ^
65cb1a32 ^
e07d8b03 ^
811b7c28 ^
630c6529 ^
e07d8b03 ^
5c6c5ad5 ^
65cb1a32 ^
e07d8b03 ^
a36bfd7b ^
7bf5f967 ^

8d6c23f7 ^
7bf5f967 ^
0d60aaaa ^
085ea1e9 ^
a385c76a ^
bfaeb3fb ^
7bf5f967 ^
24d5eb06 ^
7bf5f967 ^



f6de1679 ^

b3d031a9 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40