Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Commit

Permalink
Remove old test script, use FAKE instead
Browse files Browse the repository at this point in the history
Also update help text for consistency with current behaviour
  • Loading branch information
rneatherway committed Nov 21, 2014
1 parent 2f9a9cc commit 963f171
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 23 deletions.
11 changes: 4 additions & 7 deletions FSharp.AutoComplete/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Makefile for compiling and installing F# AutoComplete engine

.PHONY: all clean unit-test integration-test test
.PHONY: all clean integration-test test

all: ~/.config/.mono/certs
xbuild FSharp.AutoComplete.sln
./fake build

~/.config/.mono/certs:
mozroots --import --sync --quiet
Expand All @@ -14,10 +14,7 @@ clean:
-rm -fr packages
-rm -rf test/unit/build

unit-test: all
test/unit/runtests.sh

integration-test: all
test/integration/runtests.sh
./fake integrationtest

test: unit-test integration-test
test: integration-test
7 changes: 5 additions & 2 deletions FSharp.AutoComplete/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,12 @@ module internal CommandInput =
- quit the program
declarations ""filename""
- get information about top-level declarations in a file with location
parse ""<filename>"" [full]
- trigger (full) background parse request; should be
parse ""<filename>"" [sync]
- trigger full background parse request; should be
followed by content of a file (ended with <<EOF>>)
Optional 'sync' is used to force the parse to occur
synchronously for testing purposes. Not intended for
use in production.
completion ""<filename>"" <line> <col> [timeout]
- trigger completion request for the specified location
helptext <candidate>
Expand Down
14 changes: 0 additions & 14 deletions FSharp.AutoComplete/test/integration/runtests.sh

This file was deleted.

0 comments on commit 963f171

Please sign in to comment.