summaryrefslogtreecommitdiffstats
path: root/toolkit/components/commandlines/test/unit/test_bug666224.js
blob: acb162dd25deb890f6ba79ef985ac41f541570d7 (plain)
1
2
3
4
5
6
7
8
9
10
function run_test() {
  var cmdLine = Cu.createCommandLine(
    [],
    null,
    Ci.nsICommandLine.STATE_INITIAL_LAUNCH
  );
  try {
    cmdLine.getArgument(cmdLine.length);
  } catch (e) {}
}