tests: Disable sandboxing for now

https://bugs.webkit.org/show_bug.cgi?id=213174
This commit is contained in:
Cédric Bellegarde 2023-02-23 16:03:10 +01:00
parent 62b89db042
commit 80aa742686
3 changed files with 10 additions and 5 deletions

View file

@ -22,7 +22,8 @@ public abstract class Components.WebViewTestCase<V> : TestCase {
WebView.init_web_context(
this.config,
File.new_for_path(_BUILD_ROOT_DIR).get_child("src"),
File.new_for_path("/tmp") // XXX use something better here
File.new_for_path("/tmp"), // XXX use something better here
false // https://bugs.webkit.org/show_bug.cgi?id=213174
);
try {
WebView.load_resources(GLib.File.new_for_path("/tmp"));

View file

@ -21,7 +21,8 @@ public class Components.WebViewTest : TestCase {
WebView.init_web_context(
config,
File.new_for_path(_BUILD_ROOT_DIR).get_child("src"),
File.new_for_path("/tmp") // XXX use something better here
File.new_for_path("/tmp"), // XXX use something better here
false // https://bugs.webkit.org/show_bug.cgi?id=213174
);
}