Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: third_party/sqlite/sqlite-src-3080704/test/run-wordcount.sh

Issue 2363173002: [sqlite] Remove obsolete reference version 3.8.7.4. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/sqlite/sqlite-src-3080704/test/run-wordcount.sh
diff --git a/third_party/sqlite/sqlite-src-3080704/test/run-wordcount.sh b/third_party/sqlite/sqlite-src-3080704/test/run-wordcount.sh
deleted file mode 100644
index 1755d58161f67d6665b67a996633c07e5ca6fe7c..0000000000000000000000000000000000000000
--- a/third_party/sqlite/sqlite-src-3080704/test/run-wordcount.sh
+++ /dev/null
@@ -1,78 +0,0 @@
-#!/bin/sh
-#
-# This script runs the wordcount program in different ways, comparing
-# the output from each.
-#
-
-# Select the source text to be analyzed.
-#
-if test "x$1" = "x";
-then echo "Usage: $0 FILENAME [ARGS...]"; exit 1;
-fi
-
-# Do test runs
-#
-rm -f wcdb1.db
-./wordcount --timer --summary wcdb1.db $* --insert >wc-out.txt
-mv wc-out.txt wc-baseline.txt
-rm -f wcdb2.db
-./wordcount --timer --summary wcdb2.db $* --insert --without-rowid >wc-out.txt
- if cmp -s wc-out.txt wc-baseline.txt;
- then echo hi >/dev/null;
- else echo ERROR:;
- diff -u wc-baseline.txt wc-out.txt;
- fi
-
-rm -f wcdb1.db
-./wordcount --timer --summary wcdb1.db $* --replace >wc-out.txt
- if cmp -s wc-out.txt wc-baseline.txt;
- then echo hi >/dev/null;
- else echo ERROR:;
- diff -u wc-baseline.txt wc-out.txt;
- fi
-rm -f wcdb2.db
-./wordcount --timer --summary wcdb2.db $* --replace --without-rowid >wc-out.txt
- if cmp -s wc-out.txt wc-baseline.txt;
- then echo hi >/dev/null;
- else echo ERROR:;
- diff -u wc-baseline.txt wc-out.txt;
- fi
-
-rm -f wcdb1.db
-./wordcount --timer --summary wcdb1.db $* --select >wc-out.txt
- if cmp -s wc-out.txt wc-baseline.txt;
- then echo hi >/dev/null;
- else echo ERROR:;
- diff -u wc-baseline.txt wc-out.txt;
- fi
-
-rm -f wcdb2.db
-./wordcount --timer --summary wcdb2.db $* --select --without-rowid >wc-out.txt
- if cmp -s wc-out.txt wc-baseline.txt;
- then echo hi >/dev/null;
- else echo ERROR:;
- diff -u wc-baseline.txt wc-out.txt;
- fi
-
-./wordcount --timer --summary wcdb1.db $* --query >wc-out.txt
-mv wc-out.txt wc-baseline.txt
-./wordcount --timer --summary wcdb2.db $* --query --without-rowid >wc-out.txt
- if cmp -s wc-out.txt wc-baseline.txt;
- then echo hi >/dev/null;
- else echo ERROR:;
- diff -u wc-baseline.txt wc-out.txt;
- fi
-
-./wordcount --timer --summary wcdb1.db $* --delete >wc-out.txt
-mv wc-out.txt wc-baseline.txt
-./wordcount --timer --summary wcdb2.db $* --delete --without-rowid >wc-out.txt
- if cmp -s wc-out.txt wc-baseline.txt;
- then echo hi >/dev/null;
- else echo ERROR:;
- diff -u wc-baseline.txt wc-out.txt;
- fi
-
-
-# Clean up temporary files created.
-#
-rm -rf wcdb1.db wcdb2.db wc-out.txt wc-baseline.txt
« no previous file with comments | « third_party/sqlite/sqlite-src-3080704/test/rtree.test ('k') | third_party/sqlite/sqlite-src-3080704/test/savepoint.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698