commit 20d80e2323b565a36751c9455e535d8f73fa32f7 Author: Robert Vollmert Date: Fri Jun 14 16:05:47 2019 +0200 disable reactor diff --git a/elm.cabal b/elm.cabal index c75f9689..ece63c46 100644 --- a/elm.cabal +++ b/elm.cabal @@ -45,9 +45,6 @@ Executable elm builder/src ui/terminal/src - other-extensions: - TemplateHaskell - Main-Is: Main.hs @@ -56,8 +53,6 @@ Executable elm Develop Develop.Generate.Help Develop.Generate.Index - Develop.StaticFiles - Develop.StaticFiles.Build Diff Init Install diff --git a/ui/terminal/src/Develop.hs b/ui/terminal/src/Develop.hs index 4b2252e1..7ed7716e 100644 --- a/ui/terminal/src/Develop.hs +++ b/ui/terminal/src/Develop.hs @@ -23,7 +23,6 @@ import Snap.Util.FileServe import qualified Elm.Project as Project import qualified Develop.Generate.Help as Generate import qualified Develop.Generate.Index as Index -import qualified Develop.StaticFiles as StaticFiles import qualified Generate.Output as Output import qualified Json.Encode as Encode import qualified Reporting.Exit as Exit @@ -219,16 +218,7 @@ compileToHtmlBuilder mode file = serveAssets :: Snap () -serveAssets = - do file <- getSafePath - case StaticFiles.lookup file of - Nothing -> - pass - - Just (content, mimeType) -> - do modifyResponse (setContentType (mimeType <> ";charset=utf-8")) - writeBS content - +serveAssets = pass -- MIME TYPES diff --git a/ui/terminal/src/Main.hs b/terminal/src/Main.hs index 7000f3ca..2c76965a 100644 --- a/ui/terminal/src/Main.hs +++ b/ui/terminal/src/Main.hs @@ -39,7 +39,6 @@ main = complex intro outro [ repl , init - , reactor , make , install , bump earch' size='10' name='q' value=''/>
path: root/gnu/tests/gdm.scm
AgeCommit message (Expand)Author
2023-07-19tests: gdm: Prefer OCR to delay....* gnu/tests/gdm.scm (run-gdm-test): Use wait-for-screen-text instead of sleep. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Bruno Victal
2023-03-21tests: gdm: Remove tmpfs related tests....This test never managed to reveal the problem described in [1] because from gnu/system/vm.scm it is seen that our "/tmp" mount is filtered out and replaced with a "/tmp" file-system that is mounted with (needed-for-boot? #t). This last bit is crucial as the problem was caused by the user specified "/tmp" file-system lacking this part which caused "/tmp" being mounted after x11-socket-directory-service has run, effectively shadowing the directory. [1]: <https://issues.guix.gnu.org/57589> * gnu/tests/gdm.scm (%test-gdm-wayland-tmpfs): Delete variable. (make-os): Remove tmpfs? argument. (run-gdm-test): Remove tmpfs? argument. Add a small delay since waiting for gdm.pid is not enough, causing the tests to fail sporadically. Reviewed-by: Josselin Poiret <dev@jpoiret.xyz> Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Bruno Victal
2022-12-04tests: Add gdm tests....* gnu/tests/gdm.scm: New file. * gnu/local.mk: Register it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Bruno Victal