summaryrefslogtreecommitdiffstats
path: root/toolkit/xre/test/win/mochitest/browser_env_path_long.js
blob: 33832bba77a88a6b7a82277eae0bfe9ab1a841fd (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 () {
      ok(
        true,
        "Browser should start even with potentially pathologically long PATH."
      );
    }
  );
});