Skip to content

Commit 4926017

Browse files
authored
only test LTS and latest release + nightly (#263)
* only test LTS and latest release + nightly
1 parent 158fde6 commit 4926017

13 files changed

+341
-341
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ os:
77

88
julia:
99
- 1.0
10-
- 1.3
11-
- 1.4
10+
- 1
1211
- nightly
1312

1413
branches:

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
1515
CodeTracking = "0.5.7, 1"
1616
Crayons = "3, 4"
1717
Highlights = "0.4.3"
18-
JuliaInterpreter = "0.7"
18+
JuliaInterpreter = "0.7, 0.8"
1919
julia = "1"
2020

2121
[extras]

src/Debugger.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ function _make_frame(mod, arg)
8787
end
8888
quote
8989
theargs = $(esc(args))
90+
local frame
9091
frame = JuliaInterpreter.enter_call_expr(Expr(:call,theargs...))
9192
frame === nothing && error("failed to enter the function, perhaps it is set to run in compiled mode")
9293
frame = JuliaInterpreter.maybe_step_through_kwprep!(frame)

test/ui.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ end
101101

102102

103103
@testset "UI" begin
104-
if Sys.isunix() && (v"1.3.0-A" <= VERSION < v"1.4.0-A")
104+
if Sys.isunix() && (v"1.5.0-A" <= VERSION < v"1.6.0-A")
105105
Debugger._print_full_path[] = false
106106
using TerminalRegressionTests
107107

test/ui/big_repr_ui.multiout

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
++++++++++++++++++++++++++++++++++++++++++++++++++
2-
|In mysum(x) at ui.jl:95
2+
|In mysum(x) at ui.jl:94
33
| 94 function mysum(x)
44
| 95 s = 0
55
|> 96 for v in x
@@ -25,7 +25,7 @@
2525
|AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
2626
|CCCCCCCCC
2727
++++++++++++++++++++++++++++++++++++++++++++++++++
28-
|In mysum(x) at ui.jl:95
28+
|In mysum(x) at ui.jl:94
2929
| 94 function mysum(x)
3030
| 95 s = 0
3131
|> 96 for v in x

test/ui/bp_ui.multiout

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
++++++++++++++++++++++++++++++++++++++++++++++++++
2-
|In mysum(x) at ui.jl:95
2+
|In mysum(x) at ui.jl:94
33
| 94 function mysum(x)
44
| 95 s = 0
55
|> 96 for v in x
@@ -23,7 +23,7 @@
2323
|AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
2424
|CCCCCCCCC
2525
++++++++++++++++++++++++++++++++++++++++++++++++++
26-
|In mysum(x) at ui.jl:95
26+
|In mysum(x) at ui.jl:94
2727
| 94 function mysum(x)
2828
| 95 s = 0
2929
|> 96 for v in x
@@ -53,7 +53,7 @@
5353
|
5454
|CCCCCCCCC
5555
++++++++++++++++++++++++++++++++++++++++++++++++++
56-
|In mysum(x) at ui.jl:95
56+
|In mysum(x) at ui.jl:94
5757
| 94 function mysum(x)
5858
| 95 s = 0
5959
|> 96 for v in x
@@ -68,7 +68,7 @@
6868
|
6969
|1|debug> c
7070
|Hit breakpoint:
71-
|In mysum(x) at ui.jl:95
71+
|In mysum(x) at ui.jl:94
7272
| 94 function mysum(x)
7373
| 95 s = 0
7474
| 96 for v in x
@@ -107,7 +107,7 @@
107107
|AAAAAAAAAAAAAAAAAAAAAAA
108108
|CCCCCCCCC
109109
++++++++++++++++++++++++++++++++++++++++++++++++++
110-
|In mysum(x) at ui.jl:95
110+
|In mysum(x) at ui.jl:94
111111
| 94 function mysum(x)
112112
| 95 s = 0
113113
|> 96 for v in x
@@ -122,7 +122,7 @@
122122
|
123123
|1|debug> c
124124
|Hit breakpoint:
125-
|In mysum(x) at ui.jl:95
125+
|In mysum(x) at ui.jl:94
126126
| 94 function mysum(x)
127127
| 95 s = 0
128128
| 96 for v in x

test/ui/history_apply.multiout

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
++++++++++++++++++++++++++++++++++++++++++++++++++
2-
|In f_invoke(x, y, z) at ui.jl:70
2+
|In f_invoke(x, y, z) at ui.jl:69
33
| 69 function f_invoke(x, y, z)
44
|>70 return g_invoke(x..., y, z...)
55
| 71 end
@@ -15,19 +15,19 @@
1515
|AAAAAAAAAAAAAAAAAAAAAAAA
1616
|CCCCCCCCC
1717
++++++++++++++++++++++++++++++++++++++++++++++++++
18-
|In f_invoke(x, y, z) at ui.jl:70
18+
|In f_invoke(x, y, z) at ui.jl:69
1919
| 69 function f_invoke(x, y, z)
2020
|>70 return g_invoke(x..., y, z...)
2121
| 71 end
2222
|
2323
|About to run: (tuple)(3)
2424
|1|debug> nc
25-
|In f_invoke(x, y, z) at ui.jl:70
25+
|In f_invoke(x, y, z) at ui.jl:69
2626
| 69 function f_invoke(x, y, z)
2727
|>70 return g_invoke(x..., y, z...)
2828
| 71 end
2929
|
30-
|About to run: (g_invoke)(1, 2, 3, 4, 5)
30+
|About to run: (Core._apply_iterate)(iterate, g_invoke, (1, 2), (3,), [4, 5])
3131
|1|debug>
3232
--------------------------------------------------
3333
|AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
@@ -42,22 +42,22 @@
4242
|BBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
4343
|AAAAAAAA
4444
|
45-
|AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
45+
|AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
4646
|CCCCCCCCC
4747
++++++++++++++++++++++++++++++++++++++++++++++++++
48-
|In f_invoke(x, y, z) at ui.jl:70
48+
|In f_invoke(x, y, z) at ui.jl:69
4949
| 69 function f_invoke(x, y, z)
5050
|>70 return g_invoke(x..., y, z...)
5151
| 71 end
5252
|
5353
|About to run: (tuple)(3)
5454
|1|debug> nc
55-
|In f_invoke(x, y, z) at ui.jl:70
55+
|In f_invoke(x, y, z) at ui.jl:69
5656
| 69 function f_invoke(x, y, z)
5757
|>70 return g_invoke(x..., y, z...)
5858
| 71 end
5959
|
60-
|About to run: (g_invoke)(1, 2, 3, 4, 5)
60+
|About to run: (Core._apply_iterate)(iterate, g_invoke, (1, 2), (3,), [4, 5])
6161
|1|debug> s
6262
|In g_invoke(a, b, c, d, e) at ui.jl:68
6363
|>68 g_invoke(a, b, c, d, e) = a + b + c + d + e
@@ -77,7 +77,7 @@
7777
|BBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
7878
|AAAAAAAA
7979
|
80-
|AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
80+
|AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
8181
|CCCCCCCCCA
8282
|AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
8383
|BBBBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

test/ui/history_floor.multiout

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
++++++++++++++++++++++++++++++++++++++++++++++++++
2-
|In f_end(x) at ui.jl:63
2+
|In f_end(x) at ui.jl:62
33
| 62 function f_end(x)
44
|>63 x = 3 + 3
55
| 64 return sin(x)
@@ -17,15 +17,15 @@
1717
|AAAAAAAAAAAAAAAAAAAAAAA
1818
|CCCCCCCCC
1919
++++++++++++++++++++++++++++++++++++++++++++++++++
20-
|In f_end(x) at ui.jl:63
20+
|In f_end(x) at ui.jl:62
2121
| 62 function f_end(x)
2222
|>63 x = 3 + 3
2323
| 64 return sin(x)
2424
| 65 end
2525
|
2626
|About to run: (+)(3, 3)
2727
|1|debug> n
28-
|In f_end(x) at ui.jl:63
28+
|In f_end(x) at ui.jl:62
2929
| 62 function f_end(x)
3030
| 63 x = 3 + 3
3131
|>64 return sin(x)
@@ -51,23 +51,23 @@
5151
|AAAAAAAAAAAAAAAAAAAAAA
5252
|CCCCCCCCC
5353
++++++++++++++++++++++++++++++++++++++++++++++++++
54-
|In f_end(x) at ui.jl:63
54+
|In f_end(x) at ui.jl:62
5555
| 62 function f_end(x)
5656
|>63 x = 3 + 3
5757
| 64 return sin(x)
5858
| 65 end
5959
|
6060
|About to run: (+)(3, 3)
6161
|1|debug> n
62-
|In f_end(x) at ui.jl:63
62+
|In f_end(x) at ui.jl:62
6363
| 62 function f_end(x)
6464
| 63 x = 3 + 3
6565
|>64 return sin(x)
6666
| 65 end
6767
|
6868
|About to run: (sin)(6)
6969
|1|debug> n
70-
|In f_end(x) at ui.jl:63
70+
|In f_end(x) at ui.jl:62
7171
| 62 function f_end(x)
7272
| 63 x = 3 + 3
7373
|>64 return sin(x)

0 commit comments

Comments
 (0)