• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..23-Mar-201241

bmp1.bmpH A D18-Jul-2001122

bmpalign.rcH A D18-Jul-2001211

bmpalign.rsdH A D18-Jul-20012.2 KiB

capstyle.rcH A D09-Apr-200296

capstyle.rsdH A D10-Apr-2002480

checkbox.rcH A D27-Jun-2003147

checkbox.rsdH A D27-Jun-2003720

combobox.rcH A D27-Jun-2003163

combobox.rsdH A D27-Jun-2003480

deflang.rcH A D09-Apr-200285

deflang.rsdH A D10-Apr-2002480

dialog0.rcH A D16-Apr-200281

dialog0.rsdH A D16-Apr-2002480

dialog1.rcH A D16-Apr-200295

dialog1.rsdH A D16-Apr-2002480

dialogid.rcH A D03-Apr-2003292

dialogid.rsdH A D03-Apr-2003902

dialogsignature.rcH A D09-Apr-200293

dialogsignature.rsdH A D10-Apr-2002480

dlgfont.rcH A D15-Apr-2002560

dlgfont.rsdH A D15-Apr-20022.3 KiB

edittext.rcH A D27-Jun-200387

edittext.rsdH A D27-Jun-2003480

escapea.rcH A D09-Apr-2002118

escapea.rsdH A D10-Apr-2002420

escapex-2.rcH A D11-Oct-200593

escapex-2.rsdH A D11-Oct-2005480

escapex.rcH A D09-Apr-200279

escapex.rsdH A D10-Apr-2002480

lang.rcH A D08-Jan-2007303

lang.rsdH A D18-Jul-2001600

listbox.rcH A D27-Jun-200385

listbox.rsdH A D27-Jun-2003480

msupdateH A D08-May-20051.2 KiB

nocaption.rcH A D09-Apr-200285

nocaption.rsdH A D10-Apr-2002480

printstyle.rcH A D09-Apr-200296

printstyle.rsdH A D10-Apr-2002480

quoteclass.rcH A D09-Apr-2002119

READMEH A D18-Jul-2001997

scrollbar.rcH A D27-Jun-200391

scrollbar.rsdH A D27-Jun-2003480

strtab1.rcH A D08-Jan-2007129

strtab1.rsdH A D18-Jul-2001480

sublang.rcH A D09-Apr-200299

sublang.rsdH A D10-Apr-2002480

windres.expH A D08-Jan-20073.6 KiB

README

1Instructions for adding tests:
2
3The files *.rc are hand-edited or copied from elsewhere.
4
5The script msupdate is used to generate the *.rsd files, which are
6dumps of the RES formatted output of MSVC's RC utility.
7
8Within the *.rc file, the first N lines beginning with a special
9comment can control the test.  Comments are // /* or # (// is
10recommended, as both rc and windres support those).  Each line
11contains one command:
12
13	// parse-only
14	// xfail *-*-*
15
16parse-only must preceed any xfail commands, and indicates that a
17comparison with the *.rsd file will not happen.  xfail indicates when
18a failure is expected.  This should only be used for when you are
19adding a new test that is known to fail because of a bug in windres,
20and it should be removed when the bug is fixed.
21
22You can use pfail or cfail instead of xfail to indicate that only the
23parsing or comparing should be xfailed.
24
25The windres tests only run for ix86 targets, because the
26MSVC-generated *.rsd files are generated for that.
27