summaryrefslogtreecommitdiffstats
path: root/windows/test
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r16411] testh5ls.bat - added tests to match script file from rev 16310Allen Byrne2009-02-031-4/+4
| | | | | | | | h5repack.bat - added test to match script file from rev 16402 set_extent.vcproj - added WS2_32.lib for change to set_extent from rev 16406 Tested: Vista32, XP32, XP64 using VNET, VS2005 VS2008
* [svn-r15813] Purpose: Add new source code and tests to WindowsScott Wegner2008-10-085-0/+1442
| | | | | | | | | | Description: Many new source files were added from the freespace branch. This checkin adds the code to Windows as well. Note: Some tests are still failing on Windows, but this checkin brings us closer to fixing them. In particular, freespace test fails on compile (Quincey is working on it), and the DLL links test fails at runtime (I'll look into it) Tested: VS2005 on WinXP
* [svn-r15508] Scott Wegner2008-08-213-0/+729
|
* [svn-r15284] Fixed bug 1155, added fillval.c back to windows test file, ↵Neil Fortner2008-06-261-4/+1
| | | | | | | other minor cleanup in fillval.c. Tested: kagiso Same fix in trunk: kagiso (parallel), smirom, linew
* [svn-r15272] Purpose: Disable fillval test on WindowsScott Wegner2008-06-251-1/+4
| | | | | | | | | | | Description: The fillval test uses random input to test various fill cases. Certain boundary cases cause the test to fail, which produces sporadic errors on Windows. There is a bug filed for the issue here: http://bugzilla.hdfgroup.uiuc.edu/show_bug.cgi?id=1155 We will disable the test until the bug is fixed. Tested: None, simply disabled.
* [svn-r15120] Purpose: Ignore Windows POSIX-Depreciation warnings in Visual ↵Scott Wegner2008-06-0289-364/+364
| | | | | | | | | | Studio 2005 Description: On Windows, we receive many compiler warnings because Microsoft has implemented many "security-enhanced" versions of POSIX functions. However, the old versions still exist, so the warnings can be ignored. By setting a preprocessor definition, we can disable many of these warnings. On a typical HDF5 build, this reduces the number of warnings from ~1500 to ~600 Tested: VS2005 on WinXP
* [svn-r15118] Purpose: Backport Windows project cleanup from trunk: remove ↵Scott Wegner2008-06-0289-271/+271
| | | | | | | | | | | | | | | | | ignored system library, standardize program debug information, and unify Windows h5tinit Description: These changes are made via a user's suggestion, bugzilla bug #1164. These have all been tested in the trunk, and are stable/favorable changes. In many of our project files on Windows, we have our linker setting set to ignore old link libraries-- either libc.lib or libcd.lib. This is a relic from converting project files from old versions of Visual Studio to newer ones, and is unnecessary. We remove the ignored library from the project files. This actually makes no difference in the output binaries. In our debug project configurations, many of the projects were generating debug information for "Program Database and Edit & Continue". Other projects were using different settings, or none at all. We standardize to use "Program Database" setting, because it generates much smaller .obj files and cuts out unnecessary debug information. Previously, there was Windows-dependent code inside H5detect.c, because not all projects could access the gethostname() function. However, we standardize our project-files to link with WS2_32.lib, so now this function is available. Thus, the Windows-specific code has been removed from H5detect.c. Tested: VS2005 on WinXP VS.NET on WinXP
* [svn-r14856] Purpose: Fix error message when with Windows pthreadsScott Wegner2008-04-211-27/+31
| | | | | | | | Description: When building HDF5 with thread safety on Windows, the err_compat test was failing because our output was being parsed incorrectly. Rather than having a thread number in the error stack trace, there will be the string "some thread: no way to know the thread (IDs): from pthread on windows:". This checkin now takes this into account, and modifies the output accordingly. Tested: VS2005 on WinXP with Pthreads
* [svn-r14837] Purpose: Remove ohdr_gentst from Windows projectsScott Wegner2008-04-141-453/+0
| | | | | | | | Description: The ohdr_gentst project exists in order to re-create test input files that are distributed with the source. These projects aren't built by default on most platforms, and the source isn't distributed in release builds. To avoid confusion and bloat, we remove the Windows version of this project. Tested: None, only removed
* [svn-r14835] Purpose: Remove English-specific code from Windows test scriptsScott Wegner2008-04-141-3/+3
| | | | | | | | | | | Description: In previous versions of Windows, the builtin 'FC' command (diff equivalent) didn't return proper exit status. As a work-around, we parsed the message returned to check status. This relies on English return messages. In current Windows XP and Windows Vista, FC will return exit status as expected, so we can remove this workaround. Older platforms where we would need this workaround are no longer supported. Tested: VS2005 on Windows XP Small test on Windows Vista
* [svn-r14416] Purpose: Add source files to Windows projectsScott Wegner2008-01-152-0/+8
| | | | | | | | Description: This catches up Windows to most of the new source files that have been added. Specifically, H5FDpkg.h and H5FDspace.c have been added to the library projects, and tcoords.c has been added to testhdf5. This goes for VS2005 and VS6 project files. Tested: Only built, VS2005
* [svn-r14142] Purpose: Add files forgotten in yesterday's checkinScott Wegner2007-09-114-0/+1820
| | | | | | | | Description: In my large checkin yesterday, I forgot to add a few Windows project files that were renamed. This should bring the MANIFEST up to date. Tested: Will use chkmanifest after commit
* [svn-r14138] Scott Wegner2007-09-109-2219/+327
|
* [svn-r14093] Purpose: Convert Windows projects to VS2005 format and support ↵Scott Wegner2007-08-1691-5619/+31922
| | | | | | | | | | | 64-bit Fortran Description: This checkin is another Windows project cleanup, and also extends our Windows support for 64-bit Fortran. Project files are now in VS2005 format, rather than VS.NET. A couple projects have been renamed to be more descriptive (*cstub rather than *_lib), and project settings make better use of build macros. This will make them much easier to update in the future. Tested: VS2005 on WinXP 32-bit VS2005 on WinXP x64
* [svn-r14057] Purpose: Fixes for 64-bit Windows Intel Fortran 9.1Scott Wegner2007-08-0950-7406/+0
| | | | | | | | | | | | Description: We are porting Fortran to 64-bit Windows, and need to make many syntactical changes to bring the code up to date. We now go back to using "!DEC$" rather than "!MS$" in our "ATTRIBUTE" code. Also, the naming conventions for mixed language is inconsistent from 32- to 64- bit Windows. To make up with this, we use the "decorate" flag. We also needed to change the "calling convention" in project settings from "CVF" to "default". Also other minor cleanups on project files. Tested: 32-bit: VS.NET and VS2005 64-bit: VS2005
* [svn-r14034] Purpose: Remove forced symbol "gethostname@8" from Windows projectsScott Wegner2007-08-0262-122/+0
| | | | | | | | | | | | Description: Previously, we needed to force symbol definition "gethostname@8" for compatibility with old versions of Visual Studio. It appears that Visual Studio no longer requires this, so we remove it. This makes the build process on 64-bit much smoother. Also minor updates to main documentation, command-line documentation, and removed codewarrior and INTEL docs. Tested: VS.NET VS2005 chkmanifest
* [svn-r13922] Purpose: First step in VS6 DepreciationScott Wegner2007-06-27182-13542/+23465
| | | | | | | | | | | | | | | | | Desciption: This is the first major check-in in the process of depreciating Visual Studio 6.0. We create a new directory, windows_vs6, which now holds all of our previous VS6 project files. We expect to maintain this directory for only a short time (perhaps one release), so users have time to make the change. The ./windows directory now contains project files for Visual Studio .Net, as well as existing source and test scripts. This will allow us to greatly simplify the build process for the majority of our users. We have created a new solution (.Net equivolent of workspace) that houses the Fortran project files. This allowed us to remove these files from the main solution, as well as streamline the conversion in the Fortran solution. It is also much easier now to convert to Visual Studio 2005 files. Notes: I didn't update the MANIFEST with this check-in, I will make those changes shortly. Also, I haven't yet updated the documentation to reflect this check-in. That is going to require more work. We will be giving a seminar in the coming weeks about .Net and how to migrate over. Tested: VS6/VNET/VS2005 on WinXP 32/64-bit
* [svn-r13734] Added new source files (from rev. 13721) to Windows project files.Scott Wegner2007-05-051-0/+104
| | | | | | | Note: ohdr_gentst currently fails on Windows, and is disabled by default. I'm working with Quincy to get this fixed. Tested: VS6 on WinXP
* [svn-r13262] Added missing copyright notices.Albert Cheng2007-02-071-0/+13
| | | | Tests: just visual inspection as these are just remarks.
* [svn-r13258] Updated copyright notice in Windows batch files.Albert Cheng2007-02-072-4/+6
|
* [svn-r13165] Since not all windows machines have sed, we turn off error API ↵MuQun Yang2007-01-221-1/+5
| | | | | | tests by default. Developers may perform tests periodically.
* [svn-r13154] Forgot checking in new error API test project files.MuQun Yang2007-01-184-0/+410
|
* [svn-r13140] Added a new batch file to test error APIsMuQun Yang2007-01-122-1/+63
| | | | | | Tested 1.6 compatibility feature: work for vs studio 6.0 Corrected several small bugs inside tool batch files Add a few project files to test error APIs
* [svn-r12964] Update windows project files for the library.MuQun Yang2006-11-211-6/+0
| | | | | Update batch files for h5repack test,needs big efforts. Update batch file to test hdf5 library.
* [svn-r12946] Update testhdf5 project filesMuQun Yang2006-11-192-0/+30
|
* [svn-r12881] updated the batch file a little to reflect the testing position ↵MuQun Yang2006-11-081-10/+6
| | | | of ref.
* [svn-r12856] On windows file_handle has been changed to vfd. This check-in ↵MuQun Yang2006-11-037-199/+444
| | | | | | | changes the feature. Add project files for ref test. Update hdf5test.bat that includes btree2 test.
* [svn-r12618] Update project files on windows to catch up with Quincey's new ↵MuQun Yang2006-08-232-12/+42
| | | | | | check-in. VS 6.0 C only
* [svn-r12532] Update windows projects with James and Quincey's new changes.MuQun Yang2006-08-032-0/+30
| | | | | | Found two minor bugs in h5dumpgentst.c and links.c. Have informed James. Should work with windows. Tests with MSVS 6.0 with visual fortran 6.6c.
* [svn-r12464] Changed "eol-style" property on all Windows-specific files to ↵Quincey Koziol2006-07-1487-13021/+13021
| | | | | | be "CRLF" instead of "native".
* [svn-r12165] Purpose:Fang Guo2006-03-281-0/+7
| | | | | | | | | | | Maintenance on windows Description: Add in new test cross_read on Windows Solution: Platforms tested: Windows Misc. update:
* [svn-r12164] Purpose:Fang Guo2006-03-281-0/+105
| | | | | | | | | | | Maintenance on Windows Description: Add in new test cross_read on Windows Solution: Platforms tested: Windows Misc. update:
* [svn-r12163] Purpose:Fang Guo2006-03-281-0/+107
| | | | | | | | | | | Maintenance on Windows Description: Add in new tests cross_read on Windows Solution: Platforms tested: Windows Misc. update:
* [svn-r11981] Purpose:Fang Guo2006-02-281-21/+6
| | | | | | | | | | | Maintenance on Windows Description: Update project files to be tested. Solution: Platforms tested: Misc. update:
* [svn-r11980] Purpose:Fang Guo2006-02-281-105/+0
| | | | | | | | | | | Maintenance on Windows Description: Remove sheapdll.dsp according to Quincey's check in Solution: Platforms tested: Windows Misc. update:
* [svn-r11979] Purpose:Fang Guo2006-02-281-106/+0
| | | | | | | | | | | Maintenance on Windows Description: Remove sheap.dsp according to Quincey's check in Solution: Platforms tested: Windows XP Misc. update:
* [svn-r11978] Purpose:Fang Guo2006-02-281-107/+0
| | | | | | | | | | | Maintenance on Windows Description: Remove blocktrackdll.dsp according to Quincey's check in Solution: Platforms tested: Windows Misc. update:
* [svn-r11977] Purpose:Fang Guo2006-02-281-108/+0
| | | | | | | | | | | Maintenance on Windows Description: Remove project file blocktract.dsp according to Quincey's check in Solution: Platforms tested: Windows Misc. update:
* [svn-r11976] Purpose:Fang Guo2006-02-281-107/+0
| | | | | | | | | | | Maintenance on Windows Description: Remove b_plus_treedll.dsp according to Quincey's check in Solution: Platforms tested: Windows Misc. update:
* [svn-r11975] Purpose:Fang Guo2006-02-281-107/+0
| | | | | | | | | | | Maintenance on Windows Description: Remove b_plus_tree.dsp Solution: Platforms tested: Windows XP Misc. update:
* [svn-r11974] Purpose:Fang Guo2006-02-281-0/+105
| | | | | | | | | | | Maintenance on Windows Description: Add in new project file fheapdll.dsp according to Quincey's check in Solution: Platforms tested: Windows Misc. update:
* [svn-r11973] Purpose:Fang Guo2006-02-281-0/+105
| | | | | | | | | | | Maintenance on Windows Description: Add in new project file fheap.dsp Solution: Platforms tested: Windows XP Misc. update:
* [svn-r11910] Purpose:Fang Guo2006-01-311-0/+4
| | | | | | | | | | | Maintenance on Windows Description: Add cache_common.c into cachedll.dsp Solution: Platforms tested: Windows XP Misc. update:
* [svn-r11909] Purpose:Fang Guo2006-01-311-0/+4
| | | | | | | | | | | Maintenance on Windows Description: Add cache_common.c into project cache.dsp Solution: Platforms tested: Windows XP Misc. update:
* [svn-r11908] Purpose:Fang Guo2006-01-311-0/+7
| | | | | | | | | | | Maintenance on Windows Description: Add tests for cache_api.dsp and cache_apidll.dsp Solution: Platforms tested: Misc. update:
* [svn-r11907] Purpose:Fang Guo2006-01-311-0/+109
| | | | | | | | | | | Maintenance on Windows Description: Add new tests cache_apidll.dsp Solution: Platforms tested: Windows XP Misc. update:
* [svn-r11906] Purpose:Fang Guo2006-01-311-0/+111
| | | | | | | | | | | Mintainance on Windows Description: Add new tests cache_api.dsp Solution: Platforms tested: Windows XP Misc. update:
* [svn-r11721] Purpose:Fang Guo2005-11-151-0/+7
| | | | | | | | | | | Maintenance on Windows Description: Add tests for objcopy and objcopydll into batch file Solution: Platforms tested: Windows XP with VS 6.0 Misc. update:
* [svn-r11720] Purpose:Fang Guo2005-11-151-0/+107
| | | | | | | | | | | Maintenance on Windows Description: Add new test objcopydll.dsp Solution: Platforms tested: Windows XP with VS 6.0 Misc. update:
* [svn-r11719] Purpose:Fang Guo2005-11-151-0/+107
| | | | | | | | | | | Maintenance on Windows Description: Add in new test objcopy.dsp Solution: Platforms tested: Windows XP with VS 6.0 Misc. update: