mirror of
https://github.com/ading2210/libcurl.js.git
synced 2025-05-11 13:30:01 -04:00
disable unneeded protocols in curl and fix unit tests on arm64
This commit is contained in:
parent
f71fba0c05
commit
5bcff0228b
3 changed files with 18 additions and 2 deletions
|
@ -23,4 +23,5 @@ echo
|
|||
|
||||
sleep 1
|
||||
echo "wisp server ready, running tests"
|
||||
export SE_AVOID_STATS=true #turn of selenium telemetry
|
||||
python3 tests/run_tests.py
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
import unittest
|
||||
import shutil
|
||||
|
||||
import selenium.common.exceptions
|
||||
from selenium import webdriver
|
||||
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
|
||||
from selenium.webdriver.common.by import By
|
||||
|
@ -18,7 +20,12 @@ class JSTest(unittest.TestCase):
|
|||
options.add_argument("--disable-gpu")
|
||||
options.set_capability("goog:loggingPrefs", {"browser": "ALL"})
|
||||
|
||||
self.browser = webdriver.Chrome(options=options)
|
||||
try:
|
||||
self.browser = webdriver.Chrome(options=options)
|
||||
except selenium.common.exceptions.NoSuchDriverException:
|
||||
chromedriver_path = shutil.which("chromedriver")
|
||||
service = webdriver.ChromeService(executable_path=chromedriver_path)
|
||||
self.browser = webdriver.Chrome(options=options, service=service)
|
||||
|
||||
def tearDown(self):
|
||||
self.browser.quit()
|
||||
|
|
|
@ -18,7 +18,15 @@ git clone -b curl-8_9_1 --depth=1 https://github.com/curl/curl
|
|||
cd curl
|
||||
|
||||
autoreconf -fi
|
||||
emconfigure ./configure --host i686-linux --disable-shared --disable-threaded-resolver --without-libpsl --disable-netrc --disable-ipv6 --disable-tftp --disable-ntlm-wb --enable-websockets --with-wolfssl=$WOLFSSL_PREFIX --with-zlib=$ZLIB_PREFIX --with-brotli=$BROTLI_PREFIX --with-nghttp2=$NGHTTP2_PREFIX
|
||||
emconfigure ./configure --host i686-linux \
|
||||
--disable-shared --disable-threaded-resolver --without-libpsl \
|
||||
--disable-netrc --disable-ipv6 --disable-tftp --disable-ntlm-wb \
|
||||
--enable-websockets --disable-ftp --disable-file --disable-gopher \
|
||||
--disable-imap --disable-mqtt --disable-pop3 --disable-rtsp \
|
||||
--disable-smb --disable-smtp --disable-telnet --disable-dict \
|
||||
--with-wolfssl=$WOLFSSL_PREFIX --with-zlib=$ZLIB_PREFIX \
|
||||
--with-brotli=$BROTLI_PREFIX --with-nghttp2=$NGHTTP2_PREFIX
|
||||
|
||||
emmake make -j$CORE_COUNT CFLAGS="-Oz" LIBS="-lbrotlicommon"
|
||||
|
||||
rm -rf $PREFIX
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue