Skip to content

Commit f87345a

Browse files
[libc][uefi] add startup integration test
1 parent 0596ada commit f87345a

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
add_custom_target(libc-startup-tests)
2+
add_dependencies(libc-integration-tests libc-startup-tests)
3+
4+
add_integration_test(
5+
startup_no_args_test
6+
SUITE libc-startup-tests
7+
SRCS
8+
main_without_args.cpp
9+
)
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
//===-- Loader test for main without args ---------------------------------===//
2+
//
3+
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4+
// See https://llvm.org/LICENSE.txt for license information.
5+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6+
//
7+
//===----------------------------------------------------------------------===//
8+
9+
#include "test/IntegrationTest/test.h"
10+
11+
TEST_MAIN() { return 0; }

0 commit comments

Comments
 (0)