summaryrefslogtreecommitdiffstats
path: root/toolkit/xre/test/win/mochitest/browser_env_path_long.js
blob: 9bc63214b02ef5834ff22e9a4706c5b2db46f627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/publicdomain/zero/1.0/

// Test that the browser starts even when PATH would expand to a detrimentally
// long value.
add_task(async function test() {
  await BrowserTestUtils.withNewTab(
    { gBrowser, url: "about:blank" },
    function (browser) {
      ok(
        true,
        "Browser should start even with potentially pathologically long PATH."
      );
    }
  );
});