FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
TypeScript/scripts/bisect-test.ts at master · java08800/TypeScript · GitHub
java08800
/
TypeScript
Public
forked from
microsoft/TypeScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
TypeScript
/
scripts
/
bisect-test.ts
Copy path
More file actions
More file actions
Latest commit
History
History
History
59 lines (55 loc) · 2.35 KB
Breadcrumbs
TypeScript
/
scripts
/
bisect-test.ts
Copy path
File metadata and controls
59 lines (55 loc) · 2.35 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/**
* You should have ts-node installed globally before executing this, probably!
* Otherwise you'll need to compile this script before you start bisecting!
*/
import
cp
=
require
(
'child_process'
)
;
import
fs
=
require
(
'fs'
)
;
// Slice off 'node bisect-test.js' from the command line args
var
args
=
process
.
argv
.
slice
(
2
)
;
function
tsc
(
tscArgs
:
string
,
onExit
:
(
exitCode
:
number
)
=>
void
)
{
var
tsc
=
cp
.
exec
(
'node built/local/tsc.js '
+
tscArgs
,
(
)
=>
void
0
)
;
tsc
.
on
(
'close'
,
tscExitCode
=>
{
onExit
(
tscExitCode
)
;
}
)
;
}
// TODO: Rewrite bisect script to handle the post-jake/gulp swap period
var
jake
=
cp
.
exec
(
'jake clean local'
,
(
)
=>
void
0
)
;
jake
.
on
(
'close'
,
jakeExitCode
=>
{
if
(
jakeExitCode
===
0
)
{
// See what we're being asked to do
if
(
args
[
1
]
===
'compiles'
||
args
[
1
]
===
'!compiles'
)
{
tsc
(
args
[
0
]
,
tscExitCode
=>
{
if
(
(
tscExitCode
===
0
)
===
(
args
[
1
]
===
'compiles'
)
)
{
console
.
log
(
'Good'
)
;
process
.
exit
(
0
)
;
// Good
}
else
{
console
.
log
(
'Bad'
)
;
process
.
exit
(
1
)
;
// Bad
}
}
)
;
}
else
if
(
args
[
1
]
===
'emits'
||
args
[
1
]
===
'!emits'
)
{
tsc
(
args
[
0
]
,
tscExitCode
=>
{
fs
.
readFile
(
args
[
2
]
,
'utf-8'
,
(
err
,
data
)
=>
{
var
doesContains
=
data
.
indexOf
(
args
[
3
]
)
>=
0
;
if
(
doesContains
===
(
args
[
1
]
===
'emits'
)
)
{
console
.
log
(
'Good'
)
;
process
.
exit
(
0
)
;
// Good
}
else
{
console
.
log
(
'Bad'
)
;
process
.
exit
(
1
)
;
// Bad
}
}
)
;
}
)
;
}
else
{
console
.
log
(
'Unknown command line arguments.'
)
;
console
.
log
(
'Usage (compile errors): git bisect run ts-node scripts\bisect-test.ts "../failure.ts --module amd" !compiles'
)
;
console
.
log
(
'Usage (emit check): git bisect run ts-node scripts\bisect-test.ts bar.ts emits bar.js "_this = this"'
)
;
// Aborts the 'git bisect run' process
process
.
exit
(
-
1
)
;
}
}
else
{
// Compiler build failed; skip this commit
console
.
log
(
'Skip'
)
;
process
.
exit
(
125
)
;
// bisect skip
}
}
)
;
Back
|
FazBrowse Home
|
New Git URL