1*b0d29bc4SBrooks DavisInstallation instructions 2*b0d29bc4SBrooks Davis========================= 3*b0d29bc4SBrooks Davis 4*b0d29bc4SBrooks DavisKyua uses the GNU Automake, GNU Autoconf and GNU Libtool utilities as 5*b0d29bc4SBrooks Davisits build system. These are used only when compiling the application 6*b0d29bc4SBrooks Davisfrom the source code package. If you want to install Kyua from a binary 7*b0d29bc4SBrooks Davispackage, you do not need to read this document. 8*b0d29bc4SBrooks Davis 9*b0d29bc4SBrooks DavisFor the impatient: 10*b0d29bc4SBrooks Davis 11*b0d29bc4SBrooks Davis $ ./configure 12*b0d29bc4SBrooks Davis $ make 13*b0d29bc4SBrooks Davis $ make check 14*b0d29bc4SBrooks Davis Gain root privileges 15*b0d29bc4SBrooks Davis # make install 16*b0d29bc4SBrooks Davis Drop root privileges 17*b0d29bc4SBrooks Davis $ make installcheck 18*b0d29bc4SBrooks Davis 19*b0d29bc4SBrooks DavisOr alternatively, install as a regular user into your home directory: 20*b0d29bc4SBrooks Davis 21*b0d29bc4SBrooks Davis $ ./configure --prefix ~/local 22*b0d29bc4SBrooks Davis $ make 23*b0d29bc4SBrooks Davis $ make check 24*b0d29bc4SBrooks Davis $ make install 25*b0d29bc4SBrooks Davis $ make installcheck 26*b0d29bc4SBrooks Davis 27*b0d29bc4SBrooks Davis 28*b0d29bc4SBrooks DavisDependencies 29*b0d29bc4SBrooks Davis------------ 30*b0d29bc4SBrooks Davis 31*b0d29bc4SBrooks DavisTo build and use Kyua successfully you need: 32*b0d29bc4SBrooks Davis 33*b0d29bc4SBrooks Davis* A standards-compliant C and C++ complier. 34*b0d29bc4SBrooks Davis* Lutok 0.4. 35*b0d29bc4SBrooks Davis* pkg-config. 36*b0d29bc4SBrooks Davis* SQLite 3.6.22. 37*b0d29bc4SBrooks Davis 38*b0d29bc4SBrooks DavisTo build the Kyua tests, you optionally need: 39*b0d29bc4SBrooks Davis 40*b0d29bc4SBrooks Davis* The Automated Testing Framework (ATF), version 0.15 or greater. This 41*b0d29bc4SBrooks Davis is required if you want to create a distribution file. 42*b0d29bc4SBrooks Davis 43*b0d29bc4SBrooks DavisIf you are building Kyua from the code on the repository, you will also 44*b0d29bc4SBrooks Davisneed the following tools: 45*b0d29bc4SBrooks Davis 46*b0d29bc4SBrooks Davis* GNU Autoconf. 47*b0d29bc4SBrooks Davis* GNU Automake. 48*b0d29bc4SBrooks Davis* GNU Libtool. 49*b0d29bc4SBrooks Davis 50*b0d29bc4SBrooks Davis 51*b0d29bc4SBrooks DavisRegenerating the build system 52*b0d29bc4SBrooks Davis----------------------------- 53*b0d29bc4SBrooks Davis 54*b0d29bc4SBrooks DavisThis is not necessary if you are building from a formal release 55*b0d29bc4SBrooks Davisdistribution file. 56*b0d29bc4SBrooks Davis 57*b0d29bc4SBrooks DavisOn the other hand, if you are building Kyua from code extracted from the 58*b0d29bc4SBrooks Davisrepository, you must first regenerate the files used by the build 59*b0d29bc4SBrooks Davissystem. You will also need to do this if you modify `configure.ac`, 60*b0d29bc4SBrooks Davis`Makefile.am` or any of the other build system files. To do this, simply 61*b0d29bc4SBrooks Davisrun: 62*b0d29bc4SBrooks Davis 63*b0d29bc4SBrooks Davis $ autoreconf -i -s 64*b0d29bc4SBrooks Davis 65*b0d29bc4SBrooks DavisIf ATF is installed in a different prefix than Autoconf, you will also 66*b0d29bc4SBrooks Davisneed to tell autoreconf where the ATF M4 macros are located. Otherwise, 67*b0d29bc4SBrooks Davisthe configure script will be incomplete and will show confusing syntax 68*b0d29bc4SBrooks Daviserrors mentioning, for example, `ATF_CHECK_SH`. To fix this, you have 69*b0d29bc4SBrooks Davisto run autoreconf in the following manner, replacing `<atf-prefix>` with 70*b0d29bc4SBrooks Davisthe appropriate path: 71*b0d29bc4SBrooks Davis 72*b0d29bc4SBrooks Davis $ autoreconf -i -s -I <atf-prefix>/share/aclocal 73*b0d29bc4SBrooks Davis 74*b0d29bc4SBrooks Davis 75*b0d29bc4SBrooks DavisGeneral build procedure 76*b0d29bc4SBrooks Davis----------------------- 77*b0d29bc4SBrooks Davis 78*b0d29bc4SBrooks DavisTo build and install the source package, you must follow these steps: 79*b0d29bc4SBrooks Davis 80*b0d29bc4SBrooks Davis1. Configure the sources to adapt to your operating system. This is 81*b0d29bc4SBrooks Davis done using the `configure` script located on the sources' top 82*b0d29bc4SBrooks Davis directory, and it is usually invoked without arguments unless you 83*b0d29bc4SBrooks Davis want to change the installation prefix. More details on this 84*b0d29bc4SBrooks Davis procedure are given on a later section. 85*b0d29bc4SBrooks Davis 86*b0d29bc4SBrooks Davis2. Build the sources to generate the binaries and scripts. Simply run 87*b0d29bc4SBrooks Davis `make` on the sources' top directory after configuring them. No 88*b0d29bc4SBrooks Davis problems should arise. 89*b0d29bc4SBrooks Davis 90*b0d29bc4SBrooks Davis3. Check that the built programs work by running `make check`. You do 91*b0d29bc4SBrooks Davis not need to be root to do this, but if you are not, some checks will 92*b0d29bc4SBrooks Davis be skipped. 93*b0d29bc4SBrooks Davis 94*b0d29bc4SBrooks Davis4. Install the program by running `make install`. You may need to 95*b0d29bc4SBrooks Davis become root to issue this step. 96*b0d29bc4SBrooks Davis 97*b0d29bc4SBrooks Davis5. Issue any manual installation steps that may be required. These are 98*b0d29bc4SBrooks Davis described later in their own section. 99*b0d29bc4SBrooks Davis 100*b0d29bc4SBrooks Davis6. Check that the installed programs work by running `make 101*b0d29bc4SBrooks Davis installcheck`. You do not need to be root to do this, but if you are 102*b0d29bc4SBrooks Davis not, some checks will be skipped. 103*b0d29bc4SBrooks Davis 104*b0d29bc4SBrooks Davis 105*b0d29bc4SBrooks DavisConfiguration flags 106*b0d29bc4SBrooks Davis------------------- 107*b0d29bc4SBrooks Davis 108*b0d29bc4SBrooks DavisThe most common, standard flags given to `configure` are: 109*b0d29bc4SBrooks Davis 110*b0d29bc4SBrooks Davis* `--prefix=directory`: 111*b0d29bc4SBrooks Davis **Possible values:** Any path. 112*b0d29bc4SBrooks Davis **Default:** `/usr/local`. 113*b0d29bc4SBrooks Davis 114*b0d29bc4SBrooks Davis Specifies where the program (binaries and all associated files) will 115*b0d29bc4SBrooks Davis be installed. 116*b0d29bc4SBrooks Davis 117*b0d29bc4SBrooks Davis* `--sysconfdir=directory`: 118*b0d29bc4SBrooks Davis **Possible values:** Any path. 119*b0d29bc4SBrooks Davis **Default:** `/usr/local/etc`. 120*b0d29bc4SBrooks Davis 121*b0d29bc4SBrooks Davis Specifies where the installed programs will look for configuration 122*b0d29bc4SBrooks Davis files. `/kyua` will be appended to the given path unless 123*b0d29bc4SBrooks Davis `KYUA_CONFSUBDIR` is redefined as explained later on. 124*b0d29bc4SBrooks Davis 125*b0d29bc4SBrooks Davis* `--help`: 126*b0d29bc4SBrooks Davis 127*b0d29bc4SBrooks Davis Shows information about all available flags and exits immediately, 128*b0d29bc4SBrooks Davis without running any configuration tasks. 129*b0d29bc4SBrooks Davis 130*b0d29bc4SBrooks DavisThe following environment variables are specific to Kyua's `configure` 131*b0d29bc4SBrooks Davisscript: 132*b0d29bc4SBrooks Davis 133*b0d29bc4SBrooks Davis* `GDB`: 134*b0d29bc4SBrooks Davis **Possible values:** empty, absolute path to GNU GDB. 135*b0d29bc4SBrooks Davis **Default:** empty. 136*b0d29bc4SBrooks Davis 137*b0d29bc4SBrooks Davis Specifies the path to the GNU GDB binary that Kyua will use to gather a 138*b0d29bc4SBrooks Davis stack trace of a crashing test program. If empty, the configure script 139*b0d29bc4SBrooks Davis will try to find a suitable binary for you and, if not found, Kyua will 140*b0d29bc4SBrooks Davis attempt to do the search at run time. 141*b0d29bc4SBrooks Davis 142*b0d29bc4SBrooks Davis* `KYUA_ARCHITECTURE`: 143*b0d29bc4SBrooks Davis **Possible values:** name of a CPU architecture (e.g. `x86_64`, `powerpc`). 144*b0d29bc4SBrooks Davis **Default:** autodetected; typically the output of `uname -p`. 145*b0d29bc4SBrooks Davis 146*b0d29bc4SBrooks Davis Specifies the name of the CPU architecture on which Kyua will run. 147*b0d29bc4SBrooks Davis This value is used at run-time to determine tests that are not 148*b0d29bc4SBrooks Davis applicable to the host system. 149*b0d29bc4SBrooks Davis 150*b0d29bc4SBrooks Davis* `KYUA_CONFSUBDIR`: 151*b0d29bc4SBrooks Davis **Possible values:** empty, a relative path. 152*b0d29bc4SBrooks Davis **Default:** `kyua`. 153*b0d29bc4SBrooks Davis 154*b0d29bc4SBrooks Davis Specifies the subdirectory of the configuration directory (given by 155*b0d29bc4SBrooks Davis the `--sysconfdir` argument) under which Kyua will search for its 156*b0d29bc4SBrooks Davis configuration files. 157*b0d29bc4SBrooks Davis 158*b0d29bc4SBrooks Davis* `KYUA_CONFIG_FILE_FOR_CHECK`: 159*b0d29bc4SBrooks Davis **Possible values:** none, an absolute path to an existing file. 160*b0d29bc4SBrooks Davis **Default:** none. 161*b0d29bc4SBrooks Davis 162*b0d29bc4SBrooks Davis Specifies the `kyua.conf` configuration file to use when running any 163*b0d29bc4SBrooks Davis of the `check`, `installcheck` or `distcheck` targets on this source 164*b0d29bc4SBrooks Davis tree. This setting is exclusively used to customize the test runs of 165*b0d29bc4SBrooks Davis Kyua itself and has no effect whatsoever on the built product. 166*b0d29bc4SBrooks Davis 167*b0d29bc4SBrooks Davis* `KYUA_MACHINE`: 168*b0d29bc4SBrooks Davis **Possible values:** name of a machine type (e.g. `amd64`, `macppc`). 169*b0d29bc4SBrooks Davis **Default:** autodetected; typically the output of `uname -m`. 170*b0d29bc4SBrooks Davis 171*b0d29bc4SBrooks Davis Specifies the name of the machine type on which Kyua will run. This 172*b0d29bc4SBrooks Davis value is used at run-time to determine tests that are not applicable 173*b0d29bc4SBrooks Davis to the host system. 174*b0d29bc4SBrooks Davis 175*b0d29bc4SBrooks Davis* `KYUA_TMPDIR`: 176*b0d29bc4SBrooks Davis **Possible values:** an absolute path to a temporary directory. 177*b0d29bc4SBrooks Davis **Default:** `/tmp`. 178*b0d29bc4SBrooks Davis 179*b0d29bc4SBrooks Davis Specifies the path that Kyua will use to create temporary directories 180*b0d29bc4SBrooks Davis in by default. 181*b0d29bc4SBrooks Davis 182*b0d29bc4SBrooks DavisThe following flags are specific to Kyua's `configure` script: 183*b0d29bc4SBrooks Davis 184*b0d29bc4SBrooks Davis* `--enable-developer`: 185*b0d29bc4SBrooks Davis **Possible values:** `yes`, `no`. 186*b0d29bc4SBrooks Davis **Default:** `yes` in Git `HEAD` builds; `no` in formal releases. 187*b0d29bc4SBrooks Davis 188*b0d29bc4SBrooks Davis Enables several features useful for development, such as the inclusion 189*b0d29bc4SBrooks Davis of debugging symbols in all objects or the enforcement of compilation 190*b0d29bc4SBrooks Davis warnings. 191*b0d29bc4SBrooks Davis 192*b0d29bc4SBrooks Davis The compiler will be executed with an exhaustive collection of warning 193*b0d29bc4SBrooks Davis detection features regardless of the value of this flag. However, such 194*b0d29bc4SBrooks Davis warnings are only fatal when `--enable-developer` is `yes`. 195*b0d29bc4SBrooks Davis 196*b0d29bc4SBrooks Davis* `--with-atf`: 197*b0d29bc4SBrooks Davis **Possible values:** `yes`, `no`, `auto`. 198*b0d29bc4SBrooks Davis **Default:** `auto`. 199*b0d29bc4SBrooks Davis 200*b0d29bc4SBrooks Davis Enables usage of ATF to build (and later install) the tests. 201*b0d29bc4SBrooks Davis 202*b0d29bc4SBrooks Davis Setting this to `yes` causes the configure script to look for ATF 203*b0d29bc4SBrooks Davis unconditionally and abort if not found. Setting this to `auto` lets 204*b0d29bc4SBrooks Davis configure perform the best decision based on availability of ATF. 205*b0d29bc4SBrooks Davis Setting this to `no` explicitly disables ATF usage. 206*b0d29bc4SBrooks Davis 207*b0d29bc4SBrooks Davis When support for tests is enabled, the build process will generate the 208*b0d29bc4SBrooks Davis test programs and will later install them into the tests tree. 209*b0d29bc4SBrooks Davis Running `make check` or `make installcheck` from within the source 210*b0d29bc4SBrooks Davis directory will cause these tests to be run with Kyua. 211*b0d29bc4SBrooks Davis 212*b0d29bc4SBrooks Davis* `--with-doxygen`: 213*b0d29bc4SBrooks Davis **Possible values:** `yes`, `no`, `auto` or a path. 214*b0d29bc4SBrooks Davis **Default:** `auto`. 215*b0d29bc4SBrooks Davis 216*b0d29bc4SBrooks Davis Enables usage of Doxygen to generate documentation for internal APIs. 217*b0d29bc4SBrooks Davis This documentation is *not* installed and is only provided to help the 218*b0d29bc4SBrooks Davis developer of this package. Therefore, enabling or disabling Doxygen 219*b0d29bc4SBrooks Davis causes absolutely no differences on the files installed by this 220*b0d29bc4SBrooks Davis package. 221*b0d29bc4SBrooks Davis 222*b0d29bc4SBrooks Davis Setting this to `yes` causes the configure script to look for Doxygen 223*b0d29bc4SBrooks Davis unconditionally and abort if not found. Setting this to `auto` lets 224*b0d29bc4SBrooks Davis configure perform the best decision based on availability of Doxygen. 225*b0d29bc4SBrooks Davis Setting this to `no` explicitly disables Doxygen usage. And, lastly, 226*b0d29bc4SBrooks Davis setting this to a path forces configure to use a specific Doxygen 227*b0d29bc4SBrooks Davis binary, which must exist. 228*b0d29bc4SBrooks Davis 229*b0d29bc4SBrooks Davis 230*b0d29bc4SBrooks DavisPost-installation steps 231*b0d29bc4SBrooks Davis----------------------- 232*b0d29bc4SBrooks Davis 233*b0d29bc4SBrooks DavisCopy the `Kyuafile.top` file installed in the examples directory to the 234*b0d29bc4SBrooks Davisroot of your tests hierarchy and name it `Kyuafile`. For example: 235*b0d29bc4SBrooks Davis 236*b0d29bc4SBrooks Davis # cp /usr/local/share/kyua/examples/Kyuafile.top \ 237*b0d29bc4SBrooks Davis /usr/local/tests/Kyuafile 238*b0d29bc4SBrooks Davis 239*b0d29bc4SBrooks DavisThis will allow you to simply go into `/usr/tests` and run the tests 240*b0d29bc4SBrooks Davisfrom there. 241*b0d29bc4SBrooks Davis 242*b0d29bc4SBrooks Davis 243*b0d29bc4SBrooks DavisRun the tests! 244*b0d29bc4SBrooks Davis-------------- 245*b0d29bc4SBrooks Davis 246*b0d29bc4SBrooks DavisLastly, after a successful installation, you should periodically run the 247*b0d29bc4SBrooks Davistests from the final location to ensure things remain stable. Do so as 248*b0d29bc4SBrooks Davisfollows: 249*b0d29bc4SBrooks Davis 250*b0d29bc4SBrooks Davis $ cd /usr/local/kyua && kyua test 251*b0d29bc4SBrooks Davis 252*b0d29bc4SBrooks DavisThe following configuration variables are specific to the 'kyua' test 253*b0d29bc4SBrooks Davissuite and can be given to Kyua with arguments of the form 254*b0d29bc4SBrooks Davis`-v test_suites.kyua.<variable_name>=<value>`: 255*b0d29bc4SBrooks Davis 256*b0d29bc4SBrooks Davis* `run_coredump_tests`: 257*b0d29bc4SBrooks Davis **Possible values:** `true` or `false`. 258*b0d29bc4SBrooks Davis **Default:** `true`. 259*b0d29bc4SBrooks Davis 260*b0d29bc4SBrooks Davis Avoids running tests that crash subprocesses on purpose to make them 261*b0d29bc4SBrooks Davis dump core. Such tests are particularly slow on macOS, and it is 262*b0d29bc4SBrooks Davis sometimes handy to disable them for quicker development iteration. 263*b0d29bc4SBrooks Davis 264*b0d29bc4SBrooks DavisIf you see any tests fail, do not hesitate to report them in: 265*b0d29bc4SBrooks Davis 266*b0d29bc4SBrooks Davis https://github.com/jmmv/kyua/issues/ 267*b0d29bc4SBrooks Davis 268*b0d29bc4SBrooks DavisThank you! 269