source: archive/check.xml@ 54bd123

11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 54bd123 was 45ab6c7, checked in by Xi Ruoyao <xry111@…>, 3 years ago

more SVN prop clean up

Remove "$LastChanged$" everywhere, and also some unused $Date$

  • Property mode set to 100644
File size: 4.6 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 <!ENTITY check-download-http "https://github.com/libcheck/check/releases/download/&check-version;/check-&check-version;.tar.gz">
8 <!ENTITY check-download-ftp " ">
9 <!ENTITY check-md5sum "31b17c6075820a434119592941186f70">
10 <!ENTITY check-size "748 KB">
11 <!ENTITY check-buildsize "9.7 MB (add 1.2 MB for the tests)">
12 <!ENTITY check-time "0.1 SBU (add 3.6 SBU for the tests)">
13]>
14
15<sect1 id="check" xreflabel="Check-&check-version;">
16 <?dbhtml filename="check.html"?>
17
18 <sect1info>
19 <date>$Date$</date>
20 </sect1info>
21
22 <title>Check-&check-version;</title>
23
24 <indexterm zone="check">
25 <primary sortas="a-Check">Check</primary>
26 </indexterm>
27
28 <sect2 role="package">
29 <title>Introduction to Check</title>
30
31 <para>
32 <application>Check</application> is a unit testing framework for C.
33 It was installed by LFS in the temporary /tools directory. These
34 instructions install it permanently.
35 </para>
36
37 &lfs81_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&check-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&check-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &check-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &check-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &check-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &check-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72
73 <para condition="html" role="usernotes">User Notes:
74 <ulink url="&blfs-wiki;/check"/>
75 </para>
76 </sect2>
77
78 <sect2 role="installation">
79 <title>Installation of Check</title>
80
81 <para>
82 Install <application>Check</application> by running the following
83 commands:
84 </para>
85
86<screen><userinput>./configure --prefix=/usr --disable-static &amp;&amp;
87make</userinput></screen>
88
89<!-- Under LFS 8.1-rc2, the tests do not cause segfaults any longer. -->
90 <para>
91 To test the installation, issue <command>make check</command>.
92 <!-- Several tests cause segmentation faults that are harmless and can be
93 ignored. -->
94 </para>
95
96 <para>
97 Now, as the <systemitem class="username">root</systemitem> user:
98 </para>
99
100<screen role="root"><userinput>make docdir=/usr/share/doc/check-&check-version; install</userinput></screen>
101
102 </sect2>
103
104 <sect2 role="commands">
105 <title>Command Explanations</title>
106
107 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
108 href="../../xincludes/static-libraries.xml"/>
109
110 </sect2>
111
112 <sect2 role="content">
113 <title>Contents</title>
114
115 <segmentedlist>
116 <segtitle>Installed Program</segtitle>
117 <segtitle>Installed Library</segtitle>
118 <segtitle>Installed Directory</segtitle>
119
120 <seglistitem>
121 <seg>
122 checkmk
123 </seg>
124 <seg>
125 libcheck.so
126 </seg>
127 <seg>
128 /usr/share/doc/check-&check-version;
129 </seg>
130 </seglistitem>
131 </segmentedlist>
132
133 <variablelist>
134 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
135 <?dbfo list-presentation="list"?>
136 <?dbhtml list-presentation="table"?>
137
138 <varlistentry id="checkmk">
139 <term><command>checkmk</command></term>
140 <listitem>
141 <para>
142 is an <application>Awk</application> script used for
143 generating C unit tests for use with the
144 <application>Check</application> unit testing framework.
145 </para>
146 <indexterm zone="check checkmk">
147 <primary sortas="b-checkmk">checkmk</primary>
148 </indexterm>
149 </listitem>
150 </varlistentry>
151
152 <varlistentry id="libcheck">
153 <term><filename class="libraryfile">libcheck.so</filename></term>
154 <listitem>
155 <para>
156 contains the <application>Check</application> API functions.
157 </para>
158 <indexterm zone="check libcheck">
159 <primary sortas="c-libcheck">libcheck.so</primary>
160 </indexterm>
161 </listitem>
162 </varlistentry>
163
164 </variablelist>
165
166 </sect2>
167
168</sect1>
Note: See TracBrowser for help on using the repository browser.