Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(tests): enable incremental sync for wasm cases #13745

Merged
merged 1 commit into from
Oct 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions spec/02-integration/20-wasm/10-wasmtime_spec.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
local helpers = require "spec.helpers"
local fmt = string.format

--- XXX FIXME: enable inc_sync = on
for _, inc_sync in ipairs { "off" } do
for _, inc_sync in ipairs { "off", "on" } do
for _, role in ipairs({"traditional", "control_plane", "data_plane"}) do

describe("#wasm wasmtime (role: " .. role .. ")", function()
Expand Down Expand Up @@ -134,7 +133,6 @@ describe("#wasm wasmtime (role: " .. role .. ")", function()
end
end)

-- XXX FIXME: incremental sync
it("does not introduce any errors", function()
local function assert_no_errors()
assert.logfile(log).has.no.line("[error]", true, 0)
Expand Down
Loading