summaryrefslogtreecommitdiffstats
path: root/bdep/test.hxx
blob: 6edd97d3343c26212e82f75ce6199673ed3e0163 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// file      : bdep/test.hxx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BDEP_TEST_HXX
#define BDEP_TEST_HXX

#include <bdep/types.hxx>
#include <bdep/utility.hxx>

#include <bdep/build.hxx>
#include <bdep/test-options.hxx>

namespace bdep
{
  inline void
  cmd_test (const cmd_test_options& o,
            const shared_ptr<configuration>& c,
            const cstrings& pkgs,
            const strings& cfg_vars)
  {
    run_bpkg (2,
              o,
              (o.jobs_specified ()
               ? strings ({"-j", to_string (o.jobs ())})
               : strings ()),
              "test",
              "-d", c->path,
              (o.immediate () ? "--immediate" :
               o.recursive () ? "--recursive" : nullptr),
              cfg_vars,
              pkgs);
  }

  inline int
  cmd_test (const cmd_test_options& o, cli::scanner& args)
  {
    if (o.immediate () && o.recursive ())
      fail << "both --immediate|-i and --recursive|-r specified";

    return cmd_build (o, &cmd_test, args);
  }
}

#endif // BDEP_TEST_HXX