[PATCH] [test-suite] Make it build in more environments
Sergey Dmitrouk
sdmitrouk at accesssoftek.com
Fri Nov 7 06:01:56 PST 2014
Attached is typo correction to patch 0004, which is too big to include it
again.
--
Sergey
On Fri, Nov 07, 2014 at 03:46:52PM +0200, Sergey Dmitrouk wrote:
> Ping.
>
> Also attached one more small patch for shebang in *.tcl files of
> sqlite3 test.
>
> Regards,
> Sergey
>
> On Tue, Oct 28, 2014 at 09:20:58AM -0700, Sergey Dmitrouk wrote:
> > Hello,
> >
> > test-suite builds fine on a GNU/Linux machine against glibc and
> > other "standard" things, but I also need to build test-suite against
> > musl-libc and cross-compile it on Windows. Making this happen required
> > some modifications in test-suite, which generally make it work in a
> > wider range of environments.
> >
> > I have ten patches so far, it's quite a lot and they are not very
> > related. Sending them separately would basically require ten
> > separate emails, but wouldn't make review much easier. I'll separate
> > them if it's preferable.
> >
> > A couple of comments:
> >
> > 1. There is one huge patch that includes changes in the configure
> > script. Even using autoconf 2.60 didn't help much, though it reduced
> > number of changed lines by about 25%.
> > 2. Some changes are related to escaping. As I see it no one cares about
> > paths with spaces (no explicit escaping, so it doesn't work), hence
> > new changes shouldn't break anything.
> >
> > Please find attached patches. Most changes are quite trivial, so as
> > they are not related to each other, patches that look good can be
> > committed while I'm updating those that are not OK (no commit access, so
> > please help me with that).
> >
> > Best regards,
> > Sergey
-------------- next part --------------
commit b66ac6bc9e175790df05e902f0e41b6955630425
Author: Sergey Dmitrouk <sdmitrouk at accesssoftek.com>
Date: Fri Nov 7 16:00:53 2014 +0200
Fix typo in regex.h of archie-client
diff --git a/MultiSource/Benchmarks/Prolangs-C/archie-client/regex.h b/MultiSource/Benchmarks/Prolangs-C/archie-client/regex.h
index d2f0672..133442c 100644
--- a/MultiSource/Benchmarks/Prolangs-C/archie-client/regex.h
+++ b/MultiSource/Benchmarks/Prolangs-C/archie-client/regex.h
@@ -9,5 +9,5 @@
* George Ferguson, ferguson at cs.rochester.edu, 11 Sep 1991.
*/
-extern char *regex_comp();
-extern int regex_exec();
+extern char *regexp_comp();
+extern int regexp_exec();
More information about the llvm-commits
mailing list