summaryrefslogtreecommitdiffstats
path: root/modules/libjar/test/unit/test_bug458158.js
blob: 58271233727fbef0dea34226a5edf2bf3d813196 (plain)
1
2
3
4
5
6
7
8
9
10
11
function run_test() {
  var zReader = Components.classes["@mozilla.org/libjar/zip-reader;1"]
                        .createInstance(Components.interfaces.nsIZipReader);
  try {
    zReader.open(null);
    do_throw("Shouldn't get here!");
  } catch (e if (e instanceof Components.interfaces.nsIException &&
                 e.result == Components.results.NS_ERROR_NULL_POINTER)) {
    // do nothing, this test passes
  }
}