nmake call MSTest を使用しようとしています
TEST="%VS90COMNTOOLS%..\IDE\MSTest.exe"
test:
$(TEST) /testcontainer:Test.dll
nmake を実行すると、次のようになりました。
$ nmake test
'C:\Program' is not recognized as an internal or external command,
二重引用符が正しく機能しない
編集:
「エリック・メルスキー」に感謝します。私は次のようなものを作成しました:
TEST_="%VS90COMNTOOLS%..\IDE\MSTest.exe"
TEST="$(TEST_)" /nologo /noresults
test:
$(TEST) /testcontainer:Test.dll