blob: b85918c24bb202936a533de040caec705b7711dc [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "launch.h"
int main() {
// This is a temporary solution until we can support tests as packages on the bringup target,
// which the blobfs-integration-test runs on. There is no good alternative currently to run
// blobfs-integration-test with the additional --pager commandline arg.
//
// TODO(ZX-48961):
// We might not need this test at all in the future, when we have paging enabled by default on all
// platforms. The tests will then have the pager enabled by default as well.
//
// |BLOBFS_LARGE_INTEGRATION_TEST_EXECUTABLE| is set by the build environment, allowing for
// multiple large integration test targets to be invoked with the pager enabled.
const char* argv[] = {"/pkg/test/" BLOBFS_LARGE_INTEGRATION_TEST_EXECUTABLE, "--pager", nullptr};
return Execute(argv);
}