mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
Bug 730862 - Signmar tests fix for version upgrades. r=rstrong
This commit is contained in:
parent
eb8a35c14c
commit
c5eb33d74f
@ -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);
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user