2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 06:15:47 +00:00

unit-test: Link 29 test programs into ovstest

Improve link speed by linking 29 test programs into ovstest.

On my machine, running the following command against a fully
built tree:

  $ touch lib/random.c; time make

Improve the overall build time from 7 seconds to 3.5 seconds.

Signed-off-by: Andy Zhou <azhou@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
Andy Zhou
2014-04-01 00:47:01 -07:00
parent 01fed65109
commit eadd16449c
46 changed files with 286 additions and 326 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2012 Nicira, Inc.
* Copyright (c) 2010, 2012, 2014 Nicira, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -22,9 +22,10 @@
#include "util.h"
#include "socket-util.h"
#include "ovstest.h"
int
main(int argc, char *argv[])
static void
test_unix_socket_main(int argc, char *argv[])
{
const char *sockname1;
const char *sockname2;
@@ -59,6 +60,6 @@ main(int argc, char *argv[])
close(sock1);
close(sock2);
return 0;
}
OVSTEST_REGISTER("test-unix-socket", test_unix_socket_main);