source: chapter08/dejagnu.xml@ 85d9756b

11.1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 arm bdubbs/gcc13 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 85d9756b was 593b439a, checked in by DJ Lucas <dj@…>, 3 years ago

Correct page IDs in Chapter 08 dejagnu, expect, and tcl.

  • Property mode set to 100644
File size: 2.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-system-dejagnu" role="wrap">
9 <?dbhtml filename="dejagnu.html"?>
10
11 <sect1info condition="script">
12 <productname>dejagnu</productname>
13 <productnumber>&dejagnu-version;</productnumber>
14 <address>&dejagnu-url;</address>
15 </sect1info>
16
17 <title>DejaGNU-&dejagnu-version;</title>
18
19 <indexterm zone="ch-system-dejagnu">
20 <primary sortas="a-DejaGNU">DejaGNU</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The <application>DejaGnu</application> package contains a framework for running test
27 suites on GNU tools. It is written in <command>expect</command>, which itself
28 uses <application>Tcl</application> (Tool Command Language).</para>
29
30 <segmentedlist>
31 <segtitle>&buildtime;</segtitle>
32 <segtitle>&diskspace;</segtitle>
33
34 <seglistitem>
35 <seg>&dejagnu-tmp-sbu;</seg>
36 <seg>&dejagnu-tmp-du;</seg>
37 </seglistitem>
38 </segmentedlist>
39
40 </sect2>
41
42 <sect2 role="installation">
43 <title>Installation of DejaGNU</title>
44
45 <para>The upstream recommends building DejaGNU in a dedicated build
46 directory:</para>
47
48<screen><userinput remap="pre">mkdir -v build
49cd build</userinput></screen>
50
51 <para>Prepare DejaGNU for compilation:</para>
52
53<screen><userinput remap="configure">../configure --prefix=/usr
54makeinfo --html --no-split -o doc/dejagnu.html ../doc/dejagnu.texi
55makeinfo --plaintext -o doc/dejagnu.txt ../doc/dejagnu.texi</userinput></screen>
56
57 <para>Build and install the package:</para>
58
59<screen><userinput remap="install">make install
60install -v -dm755 /usr/share/doc/dejagnu-&dejagnu-version;
61install -v -m644 doc/dejagnu.{html,txt} /usr/share/doc/dejagnu-&dejagnu-version;</userinput></screen>
62
63 <para>To test the results, issue:</para>
64
65<screen><userinput remap="test">make check</userinput></screen>
66
67 </sect2>
68
69
70 <sect2 id="contents-dejagnu" role="content">
71 <title>Contents of DejaGNU</title>
72
73 <segmentedlist>
74 <segtitle>Installed program</segtitle>
75
76 <seglistitem>
77 <seg>runtest</seg>
78 </seglistitem>
79 </segmentedlist>
80
81 <variablelist>
82 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
83 <?dbfo list-presentation="list"?>
84 <?dbhtml list-presentation="table"?>
85
86 <varlistentry id="runtest">
87 <term><command>runtest</command></term>
88 <listitem>
89 <para>A wrapper script that locates the proper
90 <command>expect</command> shell and then runs DejaGNU</para>
91 <indexterm zone="ch-system-dejagnu runtest">
92 <primary sortas="b-runtest">runtest</primary>
93 </indexterm>
94 </listitem>
95 </varlistentry>
96
97 </variablelist>
98
99 </sect2>
100
101</sect1>
Note: See TracBrowser for help on using the repository browser.