aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-test
blob: 252be03fa24452d7cd31f4dfa7c5ec5008bda6a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// file      : bpkg/pkg-test -*- C++ -*-
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BPKG_PKG_TEST
#define BPKG_PKG_TEST

#include <bpkg/types>
#include <bpkg/utility>

#include <bpkg/pkg-command>
#include <bpkg/pkg-test-options>

namespace bpkg
{
  inline int
  pkg_test (const pkg_test_options& o, cli::scanner& args)
  {
    return pkg_command ("test", o, args);
  }
}

#endif // BPKG_PKG_TEST