blob: ed331f5ebc342fbf77b96bb3c11eee6e34637f82 (
plain)
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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
const BIN_DIR =
AppConstants.platform == "win" ? "test_bug473417-ó" : "test_bug473417";
const BIN_EXE = "TestAUSReadStrings" + mozinfo.bin_suffix;
const tempdir = do_get_tempdir();
function run_test() {
let workdir = tempdir.clone();
workdir.append(BIN_DIR);
let paths = [
BIN_EXE,
"TestAUSReadStrings1.ini",
"TestAUSReadStrings2.ini",
"TestAUSReadStrings3.ini",
"TestAUSReadStrings4.ini",
];
for (let i = 0; i < paths.length; i++) {
let file = do_get_file("../data/" + paths[i]);
file.copyTo(workdir, null);
}
let readStrings = workdir.clone();
readStrings.append(BIN_EXE);
let process = Cc["@mozilla.org/process/util;1"].createInstance(Ci.nsIProcess);
process.init(readStrings);
process.run(true, [], 0);
Assert.equal(process.exitValue, 0);
}
|