Bug 730862 - Signmar tests fix for version upgrades. r=rstrong

This commit is contained in:
Brian R. Bondy 2012-04-12 19:06:02 -04:00
parent eb8a35c14c
commit c5eb33d74f
2 changed files with 3 additions and 2 deletions

View File

@ -96,7 +96,8 @@ function createMAR(outMAR, dataDir, files) {
do_check_true(signmarBin.isExecutable());
// Setup the command line arguments to create the MAR.
let args = ["-C", dataDir.path, "-c", outMAR.path];
let args = ["-C", dataDir.path, "-H", "\@MAR_CHANNEL_ID\@",
"-V", "13.0a1", "-c", outMAR.path];
args = args.concat(files);
do_print('Running: ' + signmarBin.path);

View File

@ -30,7 +30,7 @@ function run_test() {
// Verify the data of the MAR is what it should be.
let outMARData = getBinaryFileData(outMAR);
compareBinaryData(outMARData, outMARData);
compareBinaryData(outMARData, refMARData);
}
// Define the unit tests to run.