Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
merge default -> production
Browse files Browse the repository at this point in the history
--HG--
branch : production
  • Loading branch information
escapewindow committed Mar 5, 2013
2 parents aaf906c + 5d7aabc commit 998c4b6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .hgtags
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -956,3 +956,5 @@ f6c8ed27364b7aef38a2ac46c36dcf3ce7ebe837 FENNEC_20_0b1_BUILD3
87813aad3de4d9b8df4ca46f7aeff81971dd7113 FENNEC_20_0b2_RELEASE 87813aad3de4d9b8df4ca46f7aeff81971dd7113 FENNEC_20_0b2_RELEASE
6d437a7d6243407ef1dea4fd1c4836960677f52d FENNEC_20_0b2_RELEASE 6d437a7d6243407ef1dea4fd1c4836960677f52d FENNEC_20_0b2_RELEASE
6d437a7d6243407ef1dea4fd1c4836960677f52d FENNEC_20_0b2_BUILD2 6d437a7d6243407ef1dea4fd1c4836960677f52d FENNEC_20_0b2_BUILD2
e36c562a519fd388a9fc77df837873f7a090b907 THUNDERBIRD_20_0b1_RELEASE
e36c562a519fd388a9fc77df837873f7a090b907 THUNDERBIRD_20_0b1_BUILD1
4 changes: 4 additions & 0 deletions configs/unittests/mac_unittest.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@
"reftest": ["tests/reftest/tests/layout/reftests/reftest.list"], "reftest": ["tests/reftest/tests/layout/reftests/reftest.list"],
"crashtest": ["tests/reftest/tests/testing/crashtest/crashtests.list"], "crashtest": ["tests/reftest/tests/testing/crashtest/crashtests.list"],
"jsreftest": ["--extra-profile-file=tests/jsreftest/tests/user.js", "tests/jsreftest/tests/jstests.list"], "jsreftest": ["--extra-profile-file=tests/jsreftest/tests/user.js", "tests/jsreftest/tests/jstests.list"],
"reftest-ipc": ['--setpref=browser.tabs.remote=true',
'tests/reftest/tests/layout/reftests/reftest-sanity/reftest.list'],
"crashtest-ipc": ['--setpref=browser.tabs.remote=true',
'tests/reftest/tests/testing/crashtest/crashtests.list'],
}, },
"all_xpcshell_suites": { "all_xpcshell_suites": {
"xpcshell": ["--manifest=tests/xpcshell/tests/all-test-dirs.list", "xpcshell": ["--manifest=tests/xpcshell/tests/all-test-dirs.list",
Expand Down
6 changes: 5 additions & 1 deletion configs/unittests/win_unittest.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -70,8 +70,12 @@
"reftest": ["tests/reftest/tests/layout/reftests/reftest.list"], "reftest": ["tests/reftest/tests/layout/reftests/reftest.list"],
"crashtest": ["tests/reftest/tests/testing/crashtest/crashtests.list"], "crashtest": ["tests/reftest/tests/testing/crashtest/crashtests.list"],
"jsreftest": ["--extra-profile-file=tests/jsreftest/tests/user.js", "tests/jsreftest/tests/jstests.list"], "jsreftest": ["--extra-profile-file=tests/jsreftest/tests/user.js", "tests/jsreftest/tests/jstests.list"],
"reftest-ipc": ['--setpref=browser.tabs.remote=true',
'tests/reftest/tests/layout/reftests/reftest-sanity/reftest.list'],
"reftest-no-accel": ["--setpref=gfx.direct2d.disabled=true", "--setpref=layers.acceleration.disabled=true", "reftest-no-accel": ["--setpref=gfx.direct2d.disabled=true", "--setpref=layers.acceleration.disabled=true",
"tests/reftest/tests/layout/reftests/reftest.list"], "tests/reftest/tests/layout/reftests/reftest.list"],
"crashtest-ipc": ['--setpref=browser.tabs.remote=true',
'tests/reftest/tests/testing/crashtest/crashtests.list'],
}, },
"all_xpcshell_suites": { "all_xpcshell_suites": {
"xpcshell": ["--manifest=tests/xpcshell/tests/all-test-dirs.list", "xpcshell": ["--manifest=tests/xpcshell/tests/all-test-dirs.list",
Expand All @@ -92,7 +96,7 @@
"cmd": [ "cmd": [
# when configs are consolidated this python path will only show # when configs are consolidated this python path will only show
# for windows. # for windows.
os.path.join(os.getcwd(), "build", "venv", "Scripts", "python"), sys.executable,
"../scripts/external_tools/mouse_and_screen_resolution.py", "../scripts/external_tools/mouse_and_screen_resolution.py",
"--configuration-url", "--configuration-url",
"http://hg.mozilla.org/%(repo_path)s/raw-file/%(revision)s/" + "http://hg.mozilla.org/%(repo_path)s/raw-file/%(revision)s/" +
Expand Down
1 change: 0 additions & 1 deletion external_tools/mouse_and_screen_resolution.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ class POINT(Structure):
_fields_ = [("x", c_ulong), ("y", c_ulong)] _fields_ = [("x", c_ulong), ("y", c_ulong)]


def queryMousePosition(): def queryMousePosition():
global pt
pt = POINT() pt = POINT()
windll.user32.GetCursorPos(byref(pt)) windll.user32.GetCursorPos(byref(pt))
return { "x": pt.x, "y": pt.y} return { "x": pt.x, "y": pt.y}
Expand Down

0 comments on commit 998c4b6

Please sign in to comment.