mirror of https://github.com/tc39/test262.git
Merge pull request #44 from smikes/fix-packager
packager: make packager runnable
This commit is contained in:
commit
821e06e3f1
|
@ -1,7 +1,7 @@
|
|||
// Copyright (c) 2014 Hank Yates. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*
|
||||
/**
|
||||
* @description Testing Array.from when passed a String
|
||||
* @author Hank Yates (hankyates@gmail.com)
|
||||
*/
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// Copyright (c) 2014 Hank Yates. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*
|
||||
/**
|
||||
* @description Testing Array.from when passed an Object is passed
|
||||
* @author Hank Yates (hankyates@gmail.com)
|
||||
*/
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
// Copyright (c) 2014 Hank Yates. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*
|
||||
/**
|
||||
* @description Testing Array.from when passed an undefined
|
||||
* @author Hank Yates (hankyates@gmail.com)
|
||||
* /
|
||||
*/
|
||||
|
||||
runTestCase(function () {
|
||||
try {
|
||||
|
|
|
@ -117,6 +117,6 @@ class SCAbstraction(object):
|
|||
'''
|
||||
Source control add of a file.
|
||||
'''
|
||||
subprocess.call(["hg", "add", filename])
|
||||
subprocess.call(["git", "add", filename])
|
||||
|
||||
SC_HELPER = SCAbstraction()
|
||||
|
|
|
@ -222,7 +222,7 @@ class TestCase(object):
|
|||
self.test = testRecord["test"]
|
||||
del testRecord["test"]
|
||||
del testRecord["header"]
|
||||
del testRecord["commentary"]
|
||||
testRecord.pop("commentary", None) # do not throw if missing
|
||||
self.testRecord = testRecord;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue