packager: make packager runnable

packager.py cannot run due to syntax errors in a few script files

packagerConfig: use git instead of hg
test262: use pop instead of delete to avoid throw if property missing
S22.1.2.1_T*: fix docString header comment: s/b /**
S22.1.2.1_T3: fix docString header comment: s/b /**, fix end of docstring * / => */
This commit is contained in:
smikes 2014-07-18 01:15:07 -06:00 committed by Sam Mikes
parent 880a7e9316
commit 7032af4db8
5 changed files with 6 additions and 6 deletions

View File

@ -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)
*/

View File

@ -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)
*/

View File

@ -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 {

View File

@ -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()

View File

@ -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;