1Date: Sun, 13 Nov 2016 10:11:11 +0100
2Subject: [PATCH] Fix invalid variable names
3
4---
5 test/lfe_andor_SUITE.core | 16 ++++++++--------
6 test/lfe_guard_SUITE.core | 14 +++++++-------
7 2 files changed, 15 insertions(+), 15 deletions(-)
8
9diff --git a/test/lfe_andor_SUITE.core b/test/lfe_andor_SUITE.core
10index 96ff765..df58b39 100644
11--- a/test/lfe_andor_SUITE.core
12+++ b/test/lfe_andor_SUITE.core
13@@ -288,19 +288,19 @@ module 'lfe_andor_SUITE' ['$handle_undefined_function'/2,
14 			       'lc$^0'/1 =
15 				   fun (_2) ->
16 				       case <_2> of
17-					 <[_x|_|-0-|]> when 'true' ->
18+					 <[_x|_lfe0]> when 'true' ->
19 					     letrec
20 						 'lc$^1'/1 =
21 						     fun (_3) ->
22 							 case <_3> of
23-							   <[_y|_|-1-|]> when 'true' ->
24+							   <[_y|_lfe1]> when 'true' ->
25 							       let <_4> =
26 								   apply 'lc$^1'/1
27-								       (_|-1-|)
28+								       (_lfe1)
29 							       in  [{_x,_y}|_4]
30 							   <[]> when 'true' ->
31 							       apply 'lc$^0'/1
32-								   (_|-0-|)
33+								   (_lfe0)
34 							   ( <_5> when 'true' ->
35 								 ( primop 'match_fail'
36 								       ({'function_clause',_5})
37@@ -455,19 +455,19 @@ module 'lfe_andor_SUITE' ['$handle_undefined_function'/2,
38 			       'lc$^2'/1 =
39 				   fun (_2) ->
40 				       case <_2> of
41-					 <[_x|_|-2-|]> when 'true' ->
42+					 <[_x|_lfe2]> when 'true' ->
43 					     letrec
44 						 'lc$^3'/1 =
45 						     fun (_3) ->
46 							 case <_3> of
47-							   <[_y|_|-3-|]> when 'true' ->
48+							   <[_y|_lfe3]> when 'true' ->
49 							       let <_4> =
50 								   apply 'lc$^3'/1
51-								       (_|-3-|)
52+								       (_lfe3)
53 							       in  [{_x,_y}|_4]
54 							   <[]> when 'true' ->
55 							       apply 'lc$^2'/1
56-								   (_|-2-|)
57+								   (_lfe2)
58 							   ( <_5> when 'true' ->
59 								 ( primop 'match_fail'
60 								       ({'function_clause',_5})
61diff --git a/test/lfe_guard_SUITE.core b/test/lfe_guard_SUITE.core
62index 38f1d99..920be82 100644
63--- a/test/lfe_guard_SUITE.core
64+++ b/test/lfe_guard_SUITE.core
65@@ -2857,22 +2857,22 @@ module 'lfe_guard_SUITE' ['$handle_undefined_function'/2,
66 		    'false' ->
67 	      case <_t> of
68 		<{_a,_b,_c,_d}> when 'true' ->
69-		    let <_|-0-|> =
70+		    let <_lfe0> =
71 			<_a>
72-		    in  let <_|-1-|> =
73+		    in  let <_lfe1> =
74 			    <_b>
75-			in  let <_|-2-|> =
76+			in  let <_lfe2> =
77 				<_c>
78-			    in  let <_|-3-|> =
79+			    in  let <_lfe3> =
80 				    <_d>
81 				in  let <_4> =
82 					let <_3> =
83 					    call 'erlang':'+'
84-						(_|-0-|, _|-1-|)
85+						(_lfe0, _lfe1)
86 					in  call 'erlang':'+'
87-						(_3, _|-2-|)
88+						(_3, _lfe2)
89 				    in  call 'erlang':'+'
90-					    (_4, _|-3-|)
91+					    (_4, _lfe3)
92 		( <_5> when 'true' ->
93 		      primop 'match_fail'
94 			  ({'badmatch',{_5}})
95--
962.7.4 (Apple Git-66)
97
98